Should I set errno?

后端 未结 6 847
盖世英雄少女心
盖世英雄少女心 2020-12-14 05:37

I\'m writing a module which exports an interface similar to send and recv.

Since those functions are supposed to return respectively the nu

相关标签:
6条回答
  • 2020-12-14 06:15

    Yes, you can assign to it, and yes, the assignment will be thread-safe. See Is errno thread-safe?

    0 讨论(0)
  • 2020-12-14 06:16

    Actually, you probably can do "proper" (as you put it) error management since you return an int.

    Just use non-negative values for the number of bytes read or written and negative values for error codes. You don't have to limit yourself to -1:

    enum myerrors {
        ERR_NO_MEMORY    = -1,
        ERR_BAD_ARGS     = -2,
        ERR_CPU_EXPLODED = -3,
        // and so on
    };
    

    However, setting errno in the fashion you want is valid. The standard states that errno expands to a modifiable lvalue, meaning you can set it. From C1x/n1425, 7.5 Errors <errno.h>:

    ... and errno which expands to a modifiable lvalue that has type int, the value of which is set to a positive error number by several library functions.

    0 讨论(0)
  • 2020-12-14 06:16

    You can just assign a value to errno, but keep in mind that there are other ways to signal an error which, depending on your situation, may be more suitable:

    1. Do not return the number of bytes read, but instead have an output parameter with type int * (or size_t * or whatever you use). You can then return an error code.
    2. Assuming that your return type is a signed type and that a negative sent or received amount of bytes does not make sense, use negative values to signal the respective error conditions.
    0 讨论(0)
  • 2020-12-14 06:19

    From: http://support.sas.com/documentation/onlinedoc/sasc/doc700/html/lr1/errno.htm

    The only portable values for errno are EDOM and ERANGE

    So that answers your portability question.

    0 讨论(0)
  • 2020-12-14 06:29

    Not only can you set errno, in many cases you should set errno. When calling some library functions you can only reliably detect an error if you first set errno to zero. See strtol for an example.

    From the POSIX specification of strtol:

    [CX] [Option Start] The strtol() function shall not change the setting of errno if successful.

    Since 0, {LONG_MIN} or {LLONG_MIN}, and {LONG_MAX} or {LLONG_MAX} are returned on error and are also valid returns on success, an application wishing to check for error situations should set errno to 0, then call strtol() or strtoll(), then check errno. [Option End]

    0 讨论(0)
  • 2020-12-14 06:40

    This is a bit old, but errno - manual section 3 says that you can directly assign to it, even though it is a macro, and it will be thread local

    0 讨论(0)
提交回复
热议问题