diff options
Diffstat (limited to 'gdb/config/i386/tm-i386sol2.h')
-rw-r--r-- | gdb/config/i386/tm-i386sol2.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/gdb/config/i386/tm-i386sol2.h b/gdb/config/i386/tm-i386sol2.h index f3ebcd9..bc2a5f8 100644 --- a/gdb/config/i386/tm-i386sol2.h +++ b/gdb/config/i386/tm-i386sol2.h @@ -51,12 +51,4 @@ extern char *sunpro_static_transform_name (char *); #define FAULTED_USE_SIGINFO -/* Macros to extract process id and thread id from a composite pid/tid. - Allocate lower 16 bits for process id, next 15 bits for thread id, and - one bit for a flag to indicate a user thread vs. a kernel thread. */ -#define PIDGET0(PID) (((PID) & 0xffff)) -#define PIDGET(PID) ((PIDGET0 (PID) == 0xffff) ? -1 : PIDGET0 (PID)) -#define TIDGET(PID) (((PID) & 0x7fffffff) >> 16) -#define MERGEPID(PID, TID) (((PID) & 0xffff) | ((TID) << 16)) - #endif /* ifndef TM_I386SOL2_H */ |