NAME

ACE_IPC_SAP - Defines the member functions for the base class of the ACE_IPC_SAP abstraction.

SYNOPSIS


#include <ace/IPC_SAP.h>


class ACE_IPC_SAP
{
  public:
    int control (int cmd, void *) const;
    int enable (int signum) const;
    int disable (int signum) const;
    ACE_HANDLE get_handle (void) const;
    void set_handle (ACE_HANDLE handle);
    void dump (void) const;
    ACE_ALLOC_HOOK_DECLARE;
  protected:
    ACE_IPC_SAP (void);
  private:
    ACE_HANDLE handle_;
    static pid_t pid_;
};

Methods for manipulating common I/O descriptor options related

to sockets.
int enable (int signum) const;
int disable (int signum) const;
ACE_HANDLE get_handle (void) const;
void set_handle (ACE_HANDLE handle);
void dump (void) const;
ACE_ALLOC_HOOK_DECLARE;

Ensure that ACE_IPC_SAP is an abstract base class.

ACE_IPC_SAP (void);

AUTHOR

Doug Schmidt

LIBRARY

ace