diff options
author | Miles Bader <miles@gnu.org> | 1995-07-17 20:09:14 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1995-07-17 20:09:14 +0000 |
commit | 721f1cfd7632238481a9f051eed52772a4561758 (patch) | |
tree | 707462e821abe26112f40ee9667602b550271f63 | |
parent | a49c9638dd867c832ca880c2d0343eaa41fd6851 (diff) |
(pf_t): New type.
-rw-r--r-- | hurd/hurd_types.defs | 13 | ||||
-rw-r--r-- | hurd/hurd_types.h | 1 |
2 files changed, 14 insertions, 0 deletions
diff --git a/hurd/hurd_types.defs b/hurd/hurd_types.defs index d37cd561..ae7458bc 100644 --- a/hurd/hurd_types.defs +++ b/hurd/hurd_types.defs @@ -95,6 +95,19 @@ destructor: SOCKET_DESTRUCTOR #endif ; +/* Protocol family */ +type pf_t = mach_port_copy_send_t +#ifdef PF_INTRAN +intran: PF_INTRAN +#endif +#ifdef PF_OUTTRAN +outtran: PF_OUTTRAN +#endif +#ifdef PF_DESTRUCTOR +destructor: PF_DESTRUCTOR +#endif +; + type addr_port_t = mach_port_copy_send_t #ifdef ADDRPORT_INTRAN intran: ADDRPORT_INTRAN diff --git a/hurd/hurd_types.h b/hurd/hurd_types.h index 921cb127..7c6658e2 100644 --- a/hurd/hurd_types.h +++ b/hurd/hurd_types.h @@ -40,6 +40,7 @@ typedef mach_port_t io_t; typedef mach_port_t process_t; typedef mach_port_t auth_t; typedef mach_port_t socket_t; +typedef mach_port_t pf_t; /* Protocol family */ typedef mach_port_t addr_port_t; typedef mach_port_t startup_t; typedef mach_port_t proccoll_t; |