Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2013-01-20 10:34:59 +0400
committerChristopher Faylor <me@cgf.cx>2013-01-20 10:34:59 +0400
commit1471537a8fc427d610d771f8097e44efb759b100 (patch)
tree92724254beedd44149cc48d6de363d3e2673fbef /winsup/cygwin/sigproc.cc
parenta32a9a87a1a2160f1fb98e25b8ca63f25226b9e5 (diff)
* sigproc.cc (sig_dispatch_pending): Add correct regparm attributes to match
declaration. (pid_exists): Ditto. (proc_subproc): Ditto. (sig_clear): Ditto. (sig_send): Ditto. (checkstate): Ditto.
Diffstat (limited to 'winsup/cygwin/sigproc.cc')
-rw-r--r--winsup/cygwin/sigproc.cc16
1 files changed, 8 insertions, 8 deletions
diff --git a/winsup/cygwin/sigproc.cc b/winsup/cygwin/sigproc.cc
index f1d299800..2cb81624c 100644
--- a/winsup/cygwin/sigproc.cc
+++ b/winsup/cygwin/sigproc.cc
@@ -84,7 +84,7 @@ public:
sigpacket *next ();
sigpacket *save () const {return curr;}
void restore (sigpacket *saved) {curr = saved;}
- friend void __stdcall sig_dispatch_pending (bool);
+ friend void __stdcall sig_dispatch_pending (bool) __attribute__ ((regparm (1)));;
friend void WINAPI wait_sig (VOID *arg);
};
@@ -156,7 +156,7 @@ proc_can_be_signalled (_pinfo *p)
return false;
}
-bool __stdcall
+bool __stdcall __attribute__ ((regparm(1)))
pid_exists (pid_t pid)
{
return pinfo (pid)->exists ();
@@ -174,7 +174,7 @@ mychild (int pid)
/* Handle all subprocess requests
*/
-int __stdcall
+int __stdcall __attribute__ ((regparm (2)))
proc_subproc (DWORD what, DWORD val)
{
int rc = 1;
@@ -390,7 +390,7 @@ proc_terminate ()
}
/* Clear pending signal */
-void __stdcall
+void __stdcall __attribute__ ((regparm (1)))
sig_clear (int target_sig)
{
if (&_my_tls != _sig_tls)
@@ -421,7 +421,7 @@ sigpending (sigset_t *mask)
}
/* Force the wait_sig thread to wake up and scan for pending signals */
-void __stdcall
+void __stdcall __attribute__ ((regparm (1)))
sig_dispatch_pending (bool fast)
{
if (&_my_tls == _sig_tls)
@@ -500,7 +500,7 @@ exit_thread (DWORD res)
ExitThread (0);
}
-int __stdcall
+int __stdcall __attribute__ ((regparm (3)))
sig_send (_pinfo *p, int sig, _cygtls *tid)
{
if (sig == __SIGHOLD)
@@ -531,7 +531,7 @@ sig_send (_pinfo *p, int sig, _cygtls *tid)
If pinfo *p == NULL, send to the current process.
If sending to this process, wait for notification that a signal has
completed before returning. */
-int __stdcall
+int __stdcall __attribute__ ((regparm (3)))
sig_send (_pinfo *p, siginfo_t& si, _cygtls *tls)
{
int rc = 1;
@@ -1081,7 +1081,7 @@ child_info_fork::abort (const char *fmt, ...)
/* Check the state of all of our children to see if any are stopped or
* terminated.
*/
-static int __stdcall
+static int __stdcall __attribute__ ((regparm (1)))
checkstate (waitq *parent_w)
{
int potential_match = 0;