From: Patrick Bernardi Date: Thu, 7 Oct 2021 21:19:01 +0000 (-0400) Subject: [Ada] sigset_t is an unsigned long on RTEMS X-Git-Tag: basepoints/gcc-13~4003 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=26a7b2ada5f9be63a99ca3eca2a66168c8b2b26f;p=thirdparty%2Fgcc.git [Ada] sigset_t is an unsigned long on RTEMS gcc/ada/ * libgnarl/s-osinte__rtems.ads: Change sigset_t to an unsigned long. --- diff --git a/gcc/ada/libgnarl/s-osinte__rtems.ads b/gcc/ada/libgnarl/s-osinte__rtems.ads index 5743a6aa4680..9a0561fccd1a 100644 --- a/gcc/ada/libgnarl/s-osinte__rtems.ads +++ b/gcc/ada/libgnarl/s-osinte__rtems.ads @@ -585,7 +585,7 @@ package System.OS_Interface is private - type sigset_t is new int; + type sigset_t is new unsigned_long; type pid_t is new int;