diff options
author | Christopher Faylor <me@cgf.cx> | 2000-11-12 04:57:41 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2000-11-12 04:57:41 +0000 |
commit | 49421cd9c5d29b29b4da341a75855b00fbab9b3d (patch) | |
tree | a6d69de6607d164700a085a452b813869332548d /winsup/cygwin/pinfo.h | |
parent | 6ccb6bcf3d24550eead6c969f2ac9a5f9f5105d3 (diff) | |
download | cygnal-49421cd9c5d29b29b4da341a75855b00fbab9b3d.tar.gz cygnal-49421cd9c5d29b29b4da341a75855b00fbab9b3d.tar.bz2 cygnal-49421cd9c5d29b29b4da341a75855b00fbab9b3d.zip |
* path.h: Add __attribute__ ((regparm(x))) to commonly used functions.
* pinfo.h: Ditto.
* sigproc.h: Ditto.
* sync.h: Ditto.
Diffstat (limited to 'winsup/cygwin/pinfo.h')
-rw-r--r-- | winsup/cygwin/pinfo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/pinfo.h b/winsup/cygwin/pinfo.h index 2ff4ba589..940e1033e 100644 --- a/winsup/cygwin/pinfo.h +++ b/winsup/cygwin/pinfo.h @@ -159,7 +159,7 @@ class pinfo _pinfo *procinfo; int destroy; public: - void init (pid_t n, DWORD create = 0, HANDLE h = NULL); + void init (pid_t n, DWORD create = 0, HANDLE h = NULL) __attribute__ ((regparm(3))); pinfo () {} pinfo (_pinfo *x): procinfo (x) {} pinfo (pid_t n) {init (n);} |