aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2007-07-08 14:20:22 +0000
committerLaurent Guerby <guerby@gcc.gnu.org>2007-07-08 14:20:22 +0000
commit8398345541cee63fccf1baf53e5bca1ac3897a71 (patch)
treef6bfff3f68d7185a8660dce3e7bd297e25944a5b /gcc
parent170ea7b94828ab882687a787cf41ea4620919147 (diff)
downloadgcc-8398345541cee63fccf1baf53e5bca1ac3897a71.zip
gcc-8398345541cee63fccf1baf53e5bca1ac3897a71.tar.gz
gcc-8398345541cee63fccf1baf53e5bca1ac3897a71.tar.bz2
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
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ada/ChangeLog4
-rw-r--r--gcc/ada/s-osinte-rtems.ads6
2 files changed, 6 insertions, 4 deletions
diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog
index ed23efe..29ff99f 100644
--- a/gcc/ada/ChangeLog
+++ b/gcc/ada/ChangeLog
@@ -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
diff --git a/gcc/ada/s-osinte-rtems.ads b/gcc/ada/s-osinte-rtems.ads
index 4f5f3b2..561e897 100644
--- a/gcc/ada/s-osinte-rtems.ads
+++ b/gcc/ada/s-osinte-rtems.ads
@@ -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");
----------------------------