summaryrefslogtreecommitdiff
path: root/gcc/ada/s-osinte-aix.ads
diff options
context:
space:
mode:
authorArnaud Charlet <charlet@gcc.gnu.org>2006-02-15 10:29:34 +0100
committerArnaud Charlet <charlet@gcc.gnu.org>2006-02-15 10:29:34 +0100
commit1dd5ad55ebf62c67008e1644fc03412c4aeff810 (patch)
treeda1db605d42d11a127646d51d16b342dfefe348b /gcc/ada/s-osinte-aix.ads
parent3ede876b325742e810e011664529cc6fde6e70ed (diff)
downloadgcc-1dd5ad55ebf62c67008e1644fc03412c4aeff810.tar.gz
s-osinte-darwin.adb, [...] (sigset_t_ptr): Removed, replaced by anonymous access type.
* s-osinte-darwin.adb, s-osinte-darwin.ads, s-osinte-vxworks.ads, s-osinte-solaris.ads, s-osinte-linux.ads, s-osinte-freebsd.ads, s-osinte-solaris-posix.ads, s-osinte-lynxos-3.ads, s-osinte-lynxos.ads, s-osinte-tru64.ads, s-osinte-aix.ads, s-osinte-irix.ads, s-osinte-hpux-dce.ads, s-osinte-linux-hppa.ads, s-osinte-linux-alpha.ads, s-inmaop-posix.adb (sigset_t_ptr): Removed, replaced by anonymous access type. (pthread_sigmask): Now take an access sigset_t * s-osinte-hpux.ads: Ditto. (pthread_mutex_t, pthread_cond_t): Update definitions to support properly 32 and 64 bit ABIs. From-SVN: r111025
Diffstat (limited to 'gcc/ada/s-osinte-aix.ads')
-rw-r--r--gcc/ada/s-osinte-aix.ads8
1 files changed, 3 insertions, 5 deletions
diff --git a/gcc/ada/s-osinte-aix.ads b/gcc/ada/s-osinte-aix.ads
index fcc7c245d08..527c8ae95e8 100644
--- a/gcc/ada/s-osinte-aix.ads
+++ b/gcc/ada/s-osinte-aix.ads
@@ -7,7 +7,7 @@
-- S p e c --
-- --
-- Copyright (C) 1991-1994, Florida State University --
--- Copyright (C) 1995-2005, Free Software Foundation, Inc. --
+-- Copyright (C) 1995-2006, Free Software Foundation, Inc. --
-- --
-- GNARL is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
@@ -324,12 +324,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, "sigthreadmask");
--------------------------