Changeset 46577995 in mainline for kernel/generic/src/synch/futex.c


Ignore:
Timestamp:
2018-01-04T20:50:52Z (8 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Children:
e211ea04
Parents:
facacc71
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-04 20:47:53)
git-committer:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-04 20:50:52)
Message:

Use errno_t in all uspace and kernel code.

Change type of every variable, parameter and return value that holds an
<errno.h> constant to either errno_t (the usual case), or sys_errno_t
(some places in kernel). This is for the purpose of self-documentation,
as well as for type-checking with a bit of type definition hackery.

After this commit, HelenOS is free of code that mixes error codes with non-error
values on the assumption that error codes are negative.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/synch/futex.c

    rfacacc71 r46577995  
    398398 *                      waitq_sleep_timeout().
    399399 */
    400 sysarg_t sys_futex_sleep(uintptr_t uaddr)
     400sys_errno_t sys_futex_sleep(uintptr_t uaddr)
    401401{
    402402        futex_t *futex = get_futex(uaddr);
    403403       
    404404        if (!futex)
    405                 return (sysarg_t) ENOENT;
     405                return (sys_errno_t) ENOENT;
    406406
    407407#ifdef CONFIG_UDEBUG
     
    409409#endif
    410410
    411         int rc = waitq_sleep_timeout(
     411        errno_t rc = waitq_sleep_timeout(
    412412            &futex->wq, 0, SYNCH_FLAGS_INTERRUPTIBLE, NULL);
    413413
     
    416416#endif
    417417
    418         return (sysarg_t) rc;
     418        return (sys_errno_t) rc;
    419419}
    420420
     
    425425 * @return              ENOENT if there is no physical mapping for uaddr.
    426426 */
    427 sysarg_t sys_futex_wakeup(uintptr_t uaddr)
     427sys_errno_t sys_futex_wakeup(uintptr_t uaddr)
    428428{
    429429        futex_t *futex = get_futex(uaddr);
     
    433433                return EOK;
    434434        } else {
    435                 return (sysarg_t) ENOENT;
     435                return (sys_errno_t) ENOENT;
    436436        }
    437437}
Note: See TracChangeset for help on using the changeset viewer.