summaryrefslogtreecommitdiff
path: root/kern/task.h
diff options
context:
space:
mode:
authorThomas Schwinge <tschwinge@gnu.org>2006-02-20 21:17:23 +0000
committerThomas Schwinge <tschwinge@gnu.org>2009-06-18 00:26:35 +0200
commite8c63bf3f3b03764429f7746723ebba462e905fc (patch)
tree256fe34e4c1723b657d04fe171b897f652a7b3fa /kern/task.h
parentef4ad2eff0364329bb0e35865c2fcdcad364b739 (diff)
2006-02-20 Thomas Schwinge <tschwinge@gnu.org>
Remove unused and unsupported code. Consult the file `DEVELOPMENT' for details. Partly based on suggestions by Gianluca Guida <glguida@gmail.com>. * bogus/net_atm.h: Remove file. * Makefile.in (bogus-files): Remove `net_atm.h'. * kern/syscall_sw.c: Don't include <net_atm.h> anymore and adopt all users of NET_ATM as if it were always defined to `0'. * kern/task.c: Likewise. * kern/task.h: Likewise. * kern/thread.c: Likewise. * kern/thread.h: Likewise.
Diffstat (limited to 'kern/task.h')
-rw-r--r--kern/task.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/kern/task.h b/kern/task.h
index df6560c..f4feb7f 100644
--- a/kern/task.h
+++ b/kern/task.h
@@ -36,7 +36,6 @@
#include <norma_task.h>
#include <fast_tas.h>
-#include <net_atm.h>
#include <mach/boolean.h>
#include <mach/port.h>
@@ -51,13 +50,6 @@
#include <kern/syscall_emulation.h>
#include <vm/vm_map.h>
-#if NET_ATM
-typedef struct nw_ep_owned {
- unsigned int ep;
- struct nw_ep_owned *next;
-} nw_ep_owned_s, *nw_ep_owned_t;
-#endif
-
struct task {
/* Synchronization/destruction information */
decl_simple_lock_data(,lock) /* Task's lock */
@@ -113,10 +105,6 @@ struct task {
vm_offset_t fast_tas_base[TASK_FAST_TAS_NRAS];
vm_offset_t fast_tas_end[TASK_FAST_TAS_NRAS];
#endif /* FAST_TAS */
-
-#if NET_ATM
- nw_ep_owned_t nw_ep_owned;
-#endif /* NET_ATM */
};
#define task_lock(task) simple_lock(&(task)->lock)