]> gcc.gnu.org Git - gcc.git/commitdiff
s-osinte-kfreebsd-gnu.ads ((sigset_t_ptr): Removed, replaced by anonymous access...
authorAurelien Jarno <aurelien@aurel32.net>
Wed, 1 Aug 2007 16:41:46 +0000 (16:41 +0000)
committerMatthias Klose <doko@gcc.gnu.org>
Wed, 1 Aug 2007 16:41:46 +0000 (16:41 +0000)
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

gcc/ada/ChangeLog
gcc/ada/s-osinte-kfreebsd-gnu.ads

index 29ff99f028ba78747660f651add891ec312c6b4d..a214544bfe8f1025e3b69641c24ff72eeb30f874 100644 (file)
@@ -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.
index 8e42855195d081b7a29bbaaa69417df9e0784533..2068745e4b1695501b5cfde663e165a0f43cf456 100644 (file)
@@ -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");
 
    --------------------------
This page took 0.132331 seconds and 5 git commands to generate.