Skip to content

Commit

Permalink
Merge pull request #7 from arangodb/bug-fix/io-uring-leaking-fds-on-t…
Browse files Browse the repository at this point in the history
…hread-exit

Fix leaking fds for io urings.
  • Loading branch information
Lars Maier authored Aug 29, 2024
2 parents 2b5df21 + 5bae5de commit f37dbc7
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions env/io_posix.h
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,7 @@ const unsigned int kIoUringDepth = 256;

inline void DeleteIOUring(void* p) {
struct io_uring* iu = static_cast<struct io_uring*>(p);
io_uring_queue_exit(iu);
delete iu;
}

Expand Down

0 comments on commit f37dbc7

Please sign in to comment.