summaryrefslogtreecommitdiff
path: root/gcc/ada/s-osinte-kfreebsd-gnu.ads
diff options
context:
space:
mode:
authordoko <doko@138bc75d-0d04-0410-961f-82ee72b054a4>2007-08-01 16:41:46 +0000
committerdoko <doko@138bc75d-0d04-0410-961f-82ee72b054a4>2007-08-01 16:41:46 +0000
commitb4c4fea4634a5d4938608d5b10287b632ade40c8 (patch)
tree28bb118011ffa9820811ff1068d6719446ab14f7 /gcc/ada/s-osinte-kfreebsd-gnu.ads
parentbdabe786b8a177f39e64d9f48d50b6576d43e021 (diff)
downloadgcc-b4c4fea4634a5d4938608d5b10287b632ade40c8.tar.gz
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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@127130 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/s-osinte-kfreebsd-gnu.ads')
-rw-r--r--gcc/ada/s-osinte-kfreebsd-gnu.ads6
1 files changed, 2 insertions, 4 deletions
diff --git a/gcc/ada/s-osinte-kfreebsd-gnu.ads b/gcc/ada/s-osinte-kfreebsd-gnu.ads
index 8e42855195d..2068745e4b1 100644
--- a/gcc/ada/s-osinte-kfreebsd-gnu.ads
+++ b/gcc/ada/s-osinte-kfreebsd-gnu.ads
@@ -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");
--------------------------