Changeset 5834:22e75d31bfd8 in roaraudio for libroar/vio_stdvios.c


Ignore:
Timestamp:
01/06/13 19:56:21 (11 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

Fix #296 by using a workaround (disabling RTLD_DEEPBIND). Needs to be fully fixed next release. (See #296)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libroar/vio_stdvios.c

    r5823 r5834  
    3939 { .inst     = (void*)(ROAR_INSTINT)(ROAR_STDIN  + 1), 
    4040   .flags    = 0x00000000, 
    41    .refc     = 0, 
     41   .refc     = 1, 
    4242   .read     = roar_vio_basic_read, 
    4343   .write    = roar_vio_basic_write, 
     
    4949 { .inst     = (void*)(ROAR_INSTINT)(ROAR_STDOUT + 1), 
    5050   .flags    = 0x00000000, 
    51    .refc     = 0, 
     51   .refc     = 1, 
    5252   .read     = roar_vio_basic_read, 
    5353   .write    = roar_vio_basic_write, 
     
    5959 { .inst     = (void*)(ROAR_INSTINT)(ROAR_STDERR + 1), 
    6060   .flags    = 0x00000000, 
    61    .refc     = 0, 
     61   .refc     = 1, 
    6262   .read     = roar_vio_basic_read, 
    6363   .write    = roar_vio_basic_write, 
Note: See TracChangeset for help on using the changeset viewer.