Changeset e5d60243 in rtems


Ignore:
Timestamp:
11/21/13 00:05:17 (10 years ago)
Author:
Bryan Dunsmore <dunsmoreb@…>
Branches:
4.11, 5, master
Children:
4f8ac34
Parents:
734f918
git-author:
Bryan Dunsmore <dunsmoreb@…> (11/21/13 00:05:17)
git-committer:
Joel Sherrill <joel.sherrill@…> (11/29/13 23:24:41)
Message:

signal methods: Add restrict keyword

Location:
cpukit/posix/src
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • cpukit/posix/src/pthreadsigmask.c

    r734f918 re5d60243  
    3434int pthread_sigmask(
    3535  int               how,
    36   const sigset_t   *set,
    37   sigset_t         *oset
     36  const sigset_t   *__restrict set,
     37  sigset_t         *__restrict oset
    3838)
    3939{
  • cpukit/posix/src/sigaction.c

    r734f918 re5d60243  
    3939int sigaction(
    4040  int                     sig,
    41   const struct sigaction *act,
    42   struct sigaction       *oact
     41  const struct sigaction *__restrict act,
     42  struct sigaction       *__restrict oact
    4343)
    4444{
  • cpukit/posix/src/sigprocmask.c

    r734f918 re5d60243  
    2929int sigprocmask(
    3030  int               how,
    31   const sigset_t   *set,
    32   sigset_t         *oset
     31  const sigset_t   *__restrict set,
     32  sigset_t         *__restrict oset
    3333)
    3434{
  • cpukit/posix/src/sigtimedwait.c

    r734f918 re5d60243  
    6868 */
    6969int sigtimedwait(
    70   const sigset_t         *set,
    71   siginfo_t              *info,
    72   const struct timespec  *timeout
     70  const sigset_t         *__restrict set,
     71  siginfo_t              *__restrict info,
     72  const struct timespec  *__restrict timeout
    7373)
    7474{
  • cpukit/posix/src/sigwait.c

    r734f918 re5d60243  
    2424
    2525int sigwait(
    26   const sigset_t  *set,
    27   int             *sig
     26  const sigset_t  *__restrict set,
     27  int             *__restrict sig
    2828)
    2929{
  • cpukit/posix/src/sigwaitinfo.c

    r734f918 re5d60243  
    2626
    2727int sigwaitinfo(
    28   const sigset_t  *set,
    29   siginfo_t       *info
     28  const sigset_t  *__restrict set,
     29  siginfo_t       *__restrict info
    3030)
    3131{
Note: See TracChangeset for help on using the changeset viewer.