diff options
author | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2004-09-16 21:19:02 +0000 |
---|---|---|
committer | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2004-09-16 21:19:02 +0000 |
commit | 40fdc8a404e75ab03b68cc62e9987cf208fd8c30 (patch) | |
tree | 37d9c4d3abe4aefd8a34ed797883dd2cd4862ca7 /ace/POSIX_Proactor.h | |
parent | c254b281f1b9a4ca19dd0c3ee73a0654a7718909 (diff) | |
download | ATCD-40fdc8a404e75ab03b68cc62e9987cf208fd8c30.tar.gz |
This commit was manufactured by cvs2svn to create branchtypecode-overhaul
'typecode-overhaul'.
Diffstat (limited to 'ace/POSIX_Proactor.h')
-rw-r--r-- | ace/POSIX_Proactor.h | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/ace/POSIX_Proactor.h b/ace/POSIX_Proactor.h index e8e0897e3d4..a86c5be69cb 100644 --- a/ace/POSIX_Proactor.h +++ b/ace/POSIX_Proactor.h @@ -47,8 +47,8 @@ * AIOCBs are stored and completion status of the corresponding * operations are queried on them. The other one is based on * POSIX Real Time signals. This class abstracts out the common - * code needed for both the strategies. <ACE_POSIX_AIOCB_Proactor> and - * <ACE_POSIX_SIG_Proactor> specialize this class for each strategy. + * code needed for both the strategies. <ACE_AIOCB_Proactor> and + * <ACE_SIG_Proactor> specialize this class for each strategy. */ class ACE_Export ACE_POSIX_Proactor : public ACE_Proactor_Impl { @@ -74,21 +74,21 @@ public: enum SystemType // open for future extention { - ACE_OS_UNDEFINED= 0x0000, - ACE_OS_WIN = 0x0100, // for future - ACE_OS_WIN_NT = ACE_OS_WIN | 0x0001, - ACE_OS_WIN_2000 = ACE_OS_WIN | 0x0002, - ACE_OS_SUN = 0x0200, // Sun Solaris family - ACE_OS_SUN_55 = ACE_OS_SUN | 0x0001, - ACE_OS_SUN_56 = ACE_OS_SUN | 0x0002, - ACE_OS_SUN_57 = ACE_OS_SUN | 0x0004, - ACE_OS_SUN_58 = ACE_OS_SUN | 0x0008, - ACE_OS_HPUX = 0x0400, // HPUX family - ACE_OS_HPUX_11 = ACE_OS_HPUX | 0x0001, - ACE_OS_LINUX = 0x0800, // Linux family - ACE_OS_FREEBSD = 0x1000, // FreeBSD family - ACE_OS_IRIX = 0x2000, // SGI IRIX family - ACE_OS_OPENBSD = 0x4000 // OpenBSD familty + OS_UNDEFINED= 0x0000, + OS_WIN = 0x0100, // for future + OS_WIN_NT = OS_WIN | 0x0001, + OS_WIN_2000 = OS_WIN | 0x0002, + OS_SUN = 0x0200, // Sun Solaris family + OS_SUN_55 = OS_SUN | 0x0001, + OS_SUN_56 = OS_SUN | 0x0002, + OS_SUN_57 = OS_SUN | 0x0004, + OS_SUN_58 = OS_SUN | 0x0008, + OS_HPUX = 0x0400, // HPUX family + OS_HPUX_11 = OS_HPUX | 0x0001, + OS_LINUX = 0x0800, // Linux family + OS_FREEBSD = 0x1000, // FreeBSD family + OS_IRIX = 0x2000, // SGI IRIX family + OS_OPENBSD = 0x4000 // OpenBSD familty }; enum Opcode { |