Museum

Home

Lab Overview

Retrotechnology Articles

⇒ Online Manual

Media Vault

Software Library

Restoration Projects

Artifacts Sought

IPC_$DELETE                       Domain/OS                        IPC_$DELETE


NAME
     ipc_$delete - delete an IPC socket

SYNOPSIS (C)
     #include <apollo/base.h>
     #include <apollo/ipc.h>

     void ipc_$delete(
          char *path_name,
          unsigned short &path_length,
          status_$t *status)

SYNOPSIS (Pascal)
     %include '/sys/ins/base.ins.pas';
     %include '/sys/ins/ipc.ins.pas';

     procedure ipc_$delete(
          in path_name: univ name_$long_pname_t;
          in path_length: pinteger;
          out status: status_$t);

SYNOPSIS (FORTRAN)
     %include '/sys/ins/base.ins.ftn'
     %include '/sys/ins/ipc.ins.ftn'

           integer*2 path_length
           integer*4 status
           character path_name*1023

           call ipc_$delete(path_name, path_length, status)

DESCRIPTION
     Ipc_$delete deletes the socket at path_name.

     path_name
          The pathname of a closed socket.

     path_length
          The number of bytes in path_name.

     status
          The completion status.

NOTES
     Ipc_$delete actually just deletes the file system object that makes the
     socket accessible to user programs.

SEE ALSO
     ipc_$close, ipc_$create, ipc_$open.

Typewritten Software • bear@typewritten.org • Edmonds, WA 98026