diff options
author | Michael I. Bushnell <mib@gnu.org> | 1995-10-27 19:11:32 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1995-10-27 19:11:32 +0000 |
commit | 2487a29190881c1d691a7c40259bd7fe1618e584 (patch) | |
tree | c1ef113a1d40d2b0fb1da4d0a11122d1cd9d600f | |
parent | 7ab1f2098161744c1ad9a71bc84b85beefe51889 (diff) |
(SCP): New macro.
-rw-r--r-- | hurd/hurd_types.defs | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/hurd/hurd_types.defs b/hurd/hurd_types.defs index cfeae9a7..ad1f6731 100644 --- a/hurd/hurd_types.defs +++ b/hurd/hurd_types.defs @@ -1,5 +1,5 @@ /* MiG type declarations for Hurd interfaces -*- C -*- - Copyright (C) 1993, 1994 Free Software Foundation + Copyright (C) 1993, 1994, 1995 Free Software Foundation This file is part of the GNU Hurd. @@ -160,6 +160,15 @@ type sreply_port_t = MACH_MSG_TYPE_MAKE_SEND_ONCE | polymorphic #define RPT #endif +/* This macros are used in some .defs files so that every out data_t + (or equivalent) has a servercopy keyword #ifdef SERVERCOPY. */ +#ifdef SERVERCOPY +#define SCP , servercopy +#else +#define SCP +#endif + + #ifdef USERPREFIX userprefix USERPREFIX; #endif |