From Peter Schauer: Define Solaris/x86 MERGEPID.

This commit is contained in:
Andrew Cagney 2000-02-29 13:38:55 +00:00
parent 1211c4e429
commit b241ba8eab
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,8 @@
Wed Mar 1 00:34:55 2000 Andrew Cagney <cagney@b1.cygnus.com>
From 2000-02-26 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>:
* config/i386/tm-i386sol2.h (MERGEPID): Define.
Wed Mar 1 00:06:19 2000 Andrew Cagney <cagney@b1.cygnus.com>
From 1999-08-13 J.T. Conklin <jtc@redback.com>:

View File

@ -45,5 +45,6 @@ extern char *sunpro_static_transform_name PARAMS ((char *));
/* Macros to extract process id and thread id from a composite pid/tid */
#define PIDGET(pid) ((pid) & 0xffff)
#define TIDGET(pid) (((pid) >> 16) & 0xffff)
#define MERGEPID(pid, tid) (((tid) << 16) | (pid))
#endif /* ifndef TM_I386SOL2_H */