Ignore:
File:
1 edited

Legend:

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

    r79ae36dd r82582e4  
    4444#include <io/klog.h>
    4545#include <vfs/vfs.h>
    46 #include <vfs/vfs_sess.h>
    4746#include <ipc/devmap.h>
    4847#include <adt/list.h>
    4948#include "../private/io.h"
    50 #include "../private/stdio.h"
    5149
    5250static void _ffillbuf(FILE *stream);
     
    5856        .eof = true,
    5957        .klog = false,
    60         .sess = NULL,
     58        .phone = -1,
    6159        .btype = _IONBF,
    6260        .buf = NULL,
     
    7270        .eof = false,
    7371        .klog = true,
    74         .sess = NULL,
     72        .phone = -1,
    7573        .btype = _IOLBF,
    7674        .buf = NULL,
     
    8684        .eof = false,
    8785        .klog = true,
    88         .sess = NULL,
     86        .phone = -1,
    8987        .btype = _IONBF,
    9088        .buf = NULL,
     
    257255        stream->eof = false;
    258256        stream->klog = false;
    259         stream->sess = NULL;
     257        stream->phone = -1;
    260258        stream->need_sync = false;
    261259        _setvbuf(stream);
     
    279277        stream->eof = false;
    280278        stream->klog = false;
    281         stream->sess = NULL;
     279        stream->phone = -1;
    282280        stream->need_sync = false;
    283281        _setvbuf(stream);
     
    311309        stream->eof = false;
    312310        stream->klog = false;
    313         stream->sess = NULL;
     311        stream->phone = -1;
    314312        stream->need_sync = false;
    315313        _setvbuf(stream);
     
    326324        fflush(stream);
    327325       
    328         if (stream->sess != NULL)
    329                 async_hangup(stream->sess);
     326        if (stream->phone >= 0)
     327                async_hangup(stream->phone);
    330328       
    331329        if (stream->fd >= 0)
     
    734732        }
    735733       
    736         if ((stream->fd >= 0) && (stream->need_sync)) {
     734        if (stream->fd >= 0 && stream->need_sync) {
    737735                /**
    738736                 * Better than syncing always, but probably still not the
     
    772770}
    773771
    774 async_sess_t *fsession(exch_mgmt_t mgmt, FILE *stream)
     772int fphone(FILE *stream)
    775773{
    776774        if (stream->fd >= 0) {
    777                 if (stream->sess == NULL)
    778                         stream->sess = fd_session(mgmt, stream->fd);
    779                
    780                 return stream->sess;
    781         }
    782        
    783         return NULL;
     775                if (stream->phone < 0)
     776                        stream->phone = fd_phone(stream->fd);
     777               
     778                return stream->phone;
     779        }
     780       
     781        return -1;
    784782}
    785783
Note: See TracChangeset for help on using the changeset viewer.