diff options
author | Luca Dariz <luca@orpolo.org> | 2022-04-03 17:15:31 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-04-03 17:15:31 +0200 |
commit | cf882205ff73cf155a9c9f48d6b41d7ad5f71f9b (patch) | |
tree | 5f7369ae2a4766775e6d942b06e5fb0e323c085c /include | |
parent | f64bcd88f5cc9e44573c202daf3c0dcec199636b (diff) | |
download | gnumach-cf882205ff73cf155a9c9f48d6b41d7ad5f71f9b.tar.gz gnumach-cf882205ff73cf155a9c9f48d6b41d7ad5f71f9b.tar.bz2 gnumach-cf882205ff73cf155a9c9f48d6b41d7ad5f71f9b.zip |
remove the old_mach_port_status_t as it's unused
* include/mach/port.h:
- remove the old_mach_port_status_t as it's unused.
Diffstat (limited to 'include')
-rw-r--r-- | include/mach/port.h | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/include/mach/port.h b/include/mach/port.h index e77e5c38..7ab3ab7c 100644 --- a/include/mach/port.h +++ b/include/mach/port.h @@ -135,22 +135,4 @@ typedef struct mach_port_status { #define MACH_PORT_QLIMIT_DEFAULT ((mach_port_msgcount_t) 5) #define MACH_PORT_QLIMIT_MAX ((mach_port_msgcount_t) 16) -/* - * Compatibility definitions, for code written - * before there was an mps_seqno field. - * - * XXX: Remove this before releasing Gnumach 1.6. - */ - -typedef struct old_mach_port_status { - mach_port_t mps_pset; /* containing port set */ -/*mach_port_mscount_t*/natural_t mps_mscount; /* make-send count */ -/*mach_port_msgcount_t*/natural_t mps_qlimit; /* queue limit */ -/*mach_port_msgcount_t*/natural_t mps_msgcount; /* number in the queue */ -/*mach_port_rights_t*/natural_t mps_sorights; /* how many send-once rights */ -/*boolean_t*/natural_t mps_srights; /* do send rights exist? */ -/*boolean_t*/natural_t mps_pdrequest; /* port-deleted requested? */ -/*boolean_t*/natural_t mps_nsrequest; /* no-senders requested? */ -} old_mach_port_status_t; - #endif /* _MACH_PORT_H_ */ |