Changeset 5276:0eb24ca6810e in roaraudio for roard/container_framework.c


Ignore:
Timestamp:
11/20/11 18:36:49 (12 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

merged VIO's _nonblock() into _ctl() (Closes: #135)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • roard/container_framework.c

    r4957 r5276  
    198198 
    199199off_t   cont_fw_lseek   (struct roar_vio_calls * vio, off_t offset, int whence); 
    200 int     cont_fw_nonblock(struct roar_vio_calls * vio, int state); 
    201200 
    202201int     cont_fw_sync    (struct roar_vio_calls * vio) { 
     
    245244 vio->write    = cont_pvio_write; 
    246245 vio->lseek    = cont_pvio_lseek; 
    247  vio->nonblock = cont_pvio_nonblock; 
    248246 vio->sync     = cont_pvio_sync; 
    249247 vio->ctl      = cont_pvio_ctl; 
     
    264262off_t   cont_pvio_lseek   (struct roar_vio_calls * vio, off_t offset, int whence) { 
    265263 return roar_vio_lseek(&(((struct cont_fw_parent_inst*)(vio->inst))->stream.stream->vio), offset, whence); 
    266 } 
    267  
    268 int     cont_pvio_nonblock(struct roar_vio_calls * vio, int state) { 
    269  return roar_vio_nonblock(&(((struct cont_fw_parent_inst*)(vio->inst))->stream.stream->vio), state); 
    270264} 
    271265 
Note: See TracChangeset for help on using the changeset viewer.