mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-02-06 22:40:33 +08:00
s-osinte-kfreebsd-gnu.ads ((sigset_t_ptr): Removed, replaced by anonymous access type.
2007-07-27 Aurelien Jarno <aurelien@aurel32.net> * s-osinte-kfreebsd-gnu.ads ((sigset_t_ptr): Removed, replaced by anonymous access type. (pthread_sigmask): Now take an access sigset_t. From-SVN: r127130
This commit is contained in:
parent
d234d78859
commit
08e7e8cb97
@ -1,3 +1,9 @@
|
||||
2007-07-27 Aurelien Jarno <aurelien@aurel32.net>
|
||||
|
||||
* s-osinte-kfreebsd-gnu.ads ((sigset_t_ptr): Removed, replaced by
|
||||
anonymous access type.
|
||||
(pthread_sigmask): Now take an access sigset_t.
|
||||
|
||||
2007-07-05 Joel Sherrill <joel.sherrill@oarcorp.com>
|
||||
|
||||
* s-osinte-rtems.ads: Correct prototype of pthread_sigmask.
|
||||
|
@ -296,12 +296,10 @@ package System.OS_Interface is
|
||||
function pthread_kill (thread : pthread_t; 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");
|
||||
|
||||
--------------------------
|
||||
|
Loading…
Reference in New Issue
Block a user