Changeset b7fd2a0 in mainline for uspace/app/sbi/src/os/helenos.c


Ignore:
Timestamp:
2018-01-13T03:10:29Z (7 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
a53ed3a
Parents:
36f0738
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.

Although this is a massive commit, it is a simple text replacement, and thus
is very easy to verify. Simply do the following:

`
git checkout <this commit's hash>
git reset HEAD
git add .
tools/srepl '\berrno_t\b' int
git add .
tools/srepl '\bsys_errno_t\b' sysarg_t
git reset
git diff
`

While this doesn't ensure that the replacements are correct, it does ensure
that the commit doesn't do anything except those replacements. Since errno_t
is typedef'd to int in the usual case (and sys_errno_t to sysarg_t), even if
incorrect, this commit cannot change behavior.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/sbi/src/os/helenos.c

    r36f0738 rb7fd2a0  
    151151 *                      EIO on decoding error.
    152152 */
    153 int os_str_get_char(const char *str, int index, int *out_char)
     153errno_t os_str_get_char(const char *str, int index, int *out_char)
    154154{
    155155        size_t offset;
     
    210210 * @param ptr   Place to store pointer to new string.
    211211 */
    212 int os_input_line(const char *prompt, char **ptr)
     212errno_t os_input_line(const char *prompt, char **ptr)
    213213{
    214214        char *line;
    215         int rc;
     215        errno_t rc;
    216216
    217217        if (tinput == NULL) {
     
    247247 *              Command is present just one, not duplicated.
    248248 */
    249 int os_exec(char *const cmd[])
     249errno_t os_exec(char *const cmd[])
    250250{
    251251        task_id_t tid;
    252252        task_wait_t twait;
    253253        task_exit_t texit;
    254         int rc;
     254        errno_t rc;
    255255        int retval;
    256256
Note: See TracChangeset for help on using the changeset viewer.