Changeset b7fd2a0 in mainline for uspace/srv/net/inetsrv/addrobj.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/srv/net/inetsrv/addrobj.c

    r36f0738 rb7fd2a0  
    7878}
    7979
    80 int inet_addrobj_add(inet_addrobj_t *addr)
     80errno_t inet_addrobj_add(inet_addrobj_t *addr)
    8181{
    8282        inet_addrobj_t *aobj;
     
    212212
    213213/** Send datagram from address object */
    214 int inet_addrobj_send_dgram(inet_addrobj_t *addr, inet_addr_t *ldest,
     214errno_t inet_addrobj_send_dgram(inet_addrobj_t *addr, inet_addr_t *ldest,
    215215    inet_dgram_t *dgram, uint8_t proto, uint8_t ttl, int df)
    216216{
     
    229229                return EINVAL;
    230230
    231         int rc;
     231        errno_t rc;
    232232        addr48_t ldest_mac;
    233233
     
    255255
    256256/** Get IDs of all address objects. */
    257 int inet_addrobj_get_id_list(sysarg_t **rid_list, size_t *rcount)
     257errno_t inet_addrobj_get_id_list(sysarg_t **rid_list, size_t *rcount)
    258258{
    259259        sysarg_t *id_list;
Note: See TracChangeset for help on using the changeset viewer.