Changes between Initial Version and Version 2 of Ticket #296


Ignore:
Timestamp:
01/06/13 19:58:30 (11 years ago)
Author:
ph3-der-loewe
Comment:

I needed to disable the usage of RTLD_DEEPBIND as it's usage will not allow the main program to change the stdvios of any plugin (different context). This should be solved the following way:

  • Update stdvios to use double pointers and use macros to dereference them (#define roar_stdout (*roar_stdout_real))
  • Re-enable usage of RTLD_DEEPBIND.
  • Check whether this is also a an alternative workaround for win32.
  • This needs to be done at next SONAME change.

I re-assign this ticket to the next major release and tag correctly.

Current status:

  • Disabled RTLD_DEEPBIND in 1.0beta9.
  • Works (as of 1.0beta9).
  • Ticket is still open and needs to be closed with the next SONAME change.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #296

    • Property Status changed from new to assigned
    • Property Priority changed from wishlist to medium
    • Property Summary changed from Plugin context seperation should seperate stdvios. to Fix stdvios access and re-enable RTLD_DEEPBIND in roardl.
    • Property Topic changed from New feature to Cleanup
    • Property Keywords soname_change added
    • Property Milestone changed from RoarAudio major release 1.0 to RoarAudio major release 1.1
    • Property Owner set to ph3-der-loewe
    • Property Type changed from enhancement to task
  • Ticket #296 – Description

    initial v2  
    1 The plugin interfaces' context separation should allow to separate roar_stdin, roar_stdout and roar_stderr between plugins and application context. 
    2 The context should be initialized using the values from the application context. 
     1* Update stdvios interface (see comments). 
     2* Re-enable RTLD_DEEPBIND. 
     3* See comments for more infos.