Skip to content

Commit

Permalink
fix(libccc/sys/io.h): increased default IO buffer size from 2048 byte…
Browse files Browse the repository at this point in the history
…s to 1MB
  • Loading branch information
LexouDuck authored Sep 23, 2022
1 parent b5fa21a commit c466dc8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hdr/libccc/sys/io.h
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ TYPEDEF_ALIAS( t_fd, FILEDESC, PRIMITIVE)
** It is also recommended to have this number be a power of 2, as it can be
** occasionally faster to manage arrays of such sizes on certain machines.
*/
#define IO_BUFFER_SIZE (2048)
#define IO_BUFFER_SIZE (1024 * 1024) // 1MB



Expand Down

0 comments on commit c466dc8

Please sign in to comment.