We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49716c9 commit aef1e34Copy full SHA for aef1e34
include/swoole.h
@@ -411,10 +411,6 @@ enum swFdType {
411
SW_FD_SIGNAL,
412
SW_FD_DNS_RESOLVER,
413
SW_FD_CARES,
414
- /**
415
- * io_uring
416
- */
417
- SW_FD_IOURING,
418
/**
419
* SW_FD_USER or SW_FD_USER+n: for custom event
420
*/
include/swoole_async.h
@@ -22,7 +22,6 @@
22
#include <string>
23
#include <mutex>
24
#include <atomic>
25
-#include <queue>
26
27
#ifndef O_DIRECT
28
#define O_DIRECT 040000
@@ -38,7 +37,6 @@ enum AsyncFlag {
38
37
struct AsyncEvent {
39
size_t task_id;
40
uint8_t canceled;
41
- int error;
42
43
* input & output
44
@@ -47,6 +45,7 @@ struct AsyncEvent {
47
45
* output
48
46
49
ssize_t retval;
+ int error;
50
51
* internal use only
52
0 commit comments