mirror of
https://gcc.gnu.org/git/gcc.git
synced 2026-02-22 03:46:53 -05:00
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: r126459
This commit is contained in:
@@ -1,8 +1,12 @@
|
||||
2007-07-05 Joel Sherrill <joel.sherrill@oarcorp.com>
|
||||
|
||||
* s-osinte-rtems.ads: Correct prototype of pthread_sigmask.
|
||||
|
||||
2007-05-13 Release Manager
|
||||
|
||||
* GCC 4.2.0 released.
|
||||
|
||||
2007-03-04 ric Botcazou <ebotcazou@adacore.com>
|
||||
2007-03-04 Eric Botcazou <ebotcazou@adacore.com>
|
||||
|
||||
PR ada/26797
|
||||
* lang.opt: Accept -ftree-vrp for Ada.
|
||||
|
||||
@@ -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");
|
||||
|
||||
----------------------------
|
||||
|
||||
Reference in New Issue
Block a user