1
0
mirror of https://github.com/libuv/libuv synced 2025-03-28 21:13:16 +00:00

Define oio_err earlier

This commit is contained in:
Bert Belder 2011-04-20 22:32:06 +02:00
parent 989a9cf70d
commit 97f9404ac0

54
oio.h
View File

@ -29,9 +29,9 @@
#include <stddef.h> /* size_t */
typedef struct oio_err_s oio_err;
typedef struct oio_handle_s oio_handle;
typedef struct oio_req_s oio_req;
typedef struct oio_err_s oio_err;
/**
* The status parameter is 0 if the request completed successfully,
@ -54,25 +54,6 @@ typedef void (*oio_timer_cb)(oio_req* req, int64_t skew, int status);
#endif
typedef enum {
OIO_UNKNOWN_HANDLE = 0,
OIO_TCP,
OIO_NAMED_PIPE,
OIO_TTY,
OIO_FILE,
} oio_handle_type;
typedef enum {
OIO_UNKNOWN_REQ = 0,
OIO_CONNECT,
OIO_ACCEPT,
OIO_READ,
OIO_WRITE,
OIO_SHUTDOWN,
OIO_CLOSE,
OIO_TIMEOUT
} oio_req_type;
/* Expand this list if necessary. */
typedef enum {
OIO_UNKNOWN = -1,
@ -109,6 +90,32 @@ typedef enum {
OIO_ETIMEDOUT
} oio_err_code;
typedef enum {
OIO_UNKNOWN_HANDLE = 0,
OIO_TCP,
OIO_NAMED_PIPE,
OIO_TTY,
OIO_FILE,
} oio_handle_type;
typedef enum {
OIO_UNKNOWN_REQ = 0,
OIO_CONNECT,
OIO_ACCEPT,
OIO_READ,
OIO_WRITE,
OIO_SHUTDOWN,
OIO_CLOSE,
OIO_TIMEOUT
} oio_req_type;
struct oio_err_s {
/* read-only */
oio_err_code code;
/* private */
int sys_errno_;
};
struct oio_handle_s {
/* read-only */
@ -131,13 +138,6 @@ struct oio_req_s {
oio_req_private_fields
};
struct oio_err_s {
/* read-only */
oio_err_code code;
/* private */
int sys_errno_;
};
/**
* Most functions return boolean: 0 for success and -1 for failure.