aboutsummaryrefslogtreecommitdiff
path: root/src/base/bufio/flush.c
diff options
context:
space:
mode:
authorNicholas Noll <nbnoll@eml.cc>2021-12-04 14:10:21 -0800
committerNicholas Noll <nbnoll@eml.cc>2021-12-04 14:10:21 -0800
commit12e09f9f85ac48ff891adf92f3b2c9a5fea27273 (patch)
tree60051793885e9978dadf6672ef85cdda216676a2 /src/base/bufio/flush.c
parentb80a3d28ce42be4fdec451f74620b10ee75219dc (diff)
Chore(REMOVE): finished deprecation of old io functions.
The old methods were simple wrappers of C standard library functions. We've moved (painfully) over to a new interface that allows for files to live on the stack. All users of the functionality are ported over.
Diffstat (limited to 'src/base/bufio/flush.c')
-rw-r--r--src/base/bufio/flush.c36
1 files changed, 0 insertions, 36 deletions
diff --git a/src/base/bufio/flush.c b/src/base/bufio/flush.c
deleted file mode 100644
index 0974766..0000000
--- a/src/base/bufio/flush.c
+++ /dev/null
@@ -1,36 +0,0 @@
-#include "internal.h"
-
-int
-bio·flush(io·Header *io)
-{
- intptr ni, no;
-
- switch(io->state){
- case io·BufWtr:
- if((ni = io->cap + io->olen))
- return 0;
-
- sys·write(io->fd, ni, io->b, &no);
-
- if(no!=ni){
- io->pos += ni;
- io->olen = -io->cap;
- return 0;
- }
-
- io->state = io·BufNil;
- io->olen = 0;
- break;
-
- case io·BufEof:
- io->state = io·BufRdr;
- /* fallthrough */
- case io·BufRdr:
- io->ilen = 0;
- io->g = io->e;
- return 0;
- default:
- ;
- }
- return io·BufEof;
-}