OSDN Git Service

2007-07-05 Joel Sherrill <joel.sherrill@oarcorp.com>
authorguerby <guerby@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 8 Jul 2007 14:20:22 +0000 (14:20 +0000)
committerguerby <guerby@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 8 Jul 2007 14:20:22 +0000 (14:20 +0000)
        * s-osinte-rtems.ads: Correct prototype of pthread_sigmask.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@126460 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ada/ChangeLog
gcc/ada/s-osinte-rtems.ads

index ed23efe..29ff99f 100644 (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
index 4f5f3b2..561e897 100644 (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");
 
    ----------------------------