s-osinte-rtems.ads: Correct prototype of pthread_sigmask.

2007-07-05  Joel Sherrill <joel.sherrill@oarcorp.com>

        * s-osinte-rtems.ads: Correct prototype of pthread_sigmask.

From-SVN: r126460
This commit is contained in:
Joel Sherrill 2007-07-08 14:20:22 +00:00 committed by Laurent Guerby
parent 170ea7b948
commit 8398345541
2 changed files with 6 additions and 4 deletions

View File

@ -1,3 +1,7 @@
2007-07-05 Joel Sherrill <joel.sherrill@oarcorp.com>
* s-osinte-rtems.ads: Correct prototype of pthread_sigmask.
2007-06-21 Eric Botcazou <ebotcazou@adacore.com>
PR tree-optimization/25737

View File

@ -291,12 +291,10 @@ package System.OS_Interface is
sig : Signal) return int;
pragma Import (C, pthread_kill, "pthread_kill");
type sigset_t_ptr is access all sigset_t;
function pthread_sigmask
(how : int;
set : sigset_t_ptr;
oset : sigset_t_ptr) return int;
set : access sigset_t;
oset : access sigset_t) return int;
pragma Import (C, pthread_sigmask, "pthread_sigmask");
----------------------------