Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/io/io.c

    r82582e4 r0803134  
    4444#include <io/klog.h>
    4545#include <vfs/vfs.h>
     46#include <vfs/vfs_sess.h>
    4647#include <ipc/devmap.h>
    4748#include <adt/list.h>
    4849#include "../private/io.h"
     50#include "../private/stdio.h"
    4951
    5052static void _ffillbuf(FILE *stream);
     
    5658        .eof = true,
    5759        .klog = false,
    58         .phone = -1,
     60        .sess = NULL,
    5961        .btype = _IONBF,
    6062        .buf = NULL,
     
    7072        .eof = false,
    7173        .klog = true,
    72         .phone = -1,
     74        .sess = NULL,
    7375        .btype = _IOLBF,
    7476        .buf = NULL,
     
    8486        .eof = false,
    8587        .klog = true,
    86         .phone = -1,
     88        .sess = NULL,
    8789        .btype = _IONBF,
    8890        .buf = NULL,
     
    125127void __stdio_done(void)
    126128{
    127         link_t *link = files.next;
    128        
    129         while (link != &files) {
    130                 FILE *file = list_get_instance(link, FILE, link);
     129        while (!list_empty(&files)) {
     130                FILE *file = list_get_instance(list_first(&files), FILE, link);
    131131                fclose(file);
    132                 link = files.next;
    133132        }
    134133}
     
    255254        stream->eof = false;
    256255        stream->klog = false;
    257         stream->phone = -1;
     256        stream->sess = NULL;
    258257        stream->need_sync = false;
    259258        _setvbuf(stream);
     
    277276        stream->eof = false;
    278277        stream->klog = false;
    279         stream->phone = -1;
     278        stream->sess = NULL;
    280279        stream->need_sync = false;
    281280        _setvbuf(stream);
     
    309308        stream->eof = false;
    310309        stream->klog = false;
    311         stream->phone = -1;
     310        stream->sess = NULL;
    312311        stream->need_sync = false;
    313312        _setvbuf(stream);
     
    324323        fflush(stream);
    325324       
    326         if (stream->phone >= 0)
    327                 async_hangup(stream->phone);
     325        if (stream->sess != NULL)
     326                async_hangup(stream->sess);
    328327       
    329328        if (stream->fd >= 0)
     
    595594                }
    596595               
    597                 buf += now;
     596                data += now;
    598597                stream->buf_head += now;
    599598                buf_free -= now;
    600599                bytes_left -= now;
    601600                total_written += now;
     601                stream->buf_state = _bs_write;
    602602               
    603603                if (buf_free == 0) {
     
    607607                }
    608608        }
    609        
    610         if (total_written > 0)
    611                 stream->buf_state = _bs_write;
    612609
    613610        if (need_flush)
     
    715712off64_t ftell(FILE *stream)
    716713{
     714        _fflushbuf(stream);
    717715        return lseek(stream->fd, 0, SEEK_CUR);
    718716}
     
    732730        }
    733731       
    734         if (stream->fd >= 0 && stream->need_sync) {
     732        if ((stream->fd >= 0) && (stream->need_sync)) {
    735733                /**
    736734                 * Better than syncing always, but probably still not the
     
    770768}
    771769
    772 int fphone(FILE *stream)
     770async_sess_t *fsession(exch_mgmt_t mgmt, FILE *stream)
    773771{
    774772        if (stream->fd >= 0) {
    775                 if (stream->phone < 0)
    776                         stream->phone = fd_phone(stream->fd);
    777                
    778                 return stream->phone;
    779         }
    780        
    781         return -1;
     773                if (stream->sess == NULL)
     774                        stream->sess = fd_session(mgmt, stream->fd);
     775               
     776                return stream->sess;
     777        }
     778       
     779        return NULL;
    782780}
    783781
Note: See TracChangeset for help on using the changeset viewer.