Changes between Initial Version and Version 1 of DsxPosix


Ignore:
Timestamp:
Aug 21, 2006, 6:58:31 PM (18 years ago)
Author:
Nicolas Pouillon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DsxPosix

    v1 v1  
     1= Posix version =
     2
     3You may compile your application using software implementation of your tasks.
     4
     5== Debugging tools ==
     6
     7You may use gdb, ddd, whatever. I wont describe it here.
     8
     9== Logs ==
     10
     11Dsx will log MwMr fifos contents to files, there will appear all read/written data, from where.
     12The file will be named after the MwMr fifo's name `name.txt`
     13
     14Dsx will also log messages on terminal, and to a file named `dsx_trace.txt`. You may change minimal DsxLogging level displayed through environment variable `DSX_VERBOSITY`:
     15
     16{{{
     17$ export DSX_VERBOSITY=TRACE
     18$ ./exe.posix
     19}}}
     20
     21Or even, for a one-time change:
     22{{{
     23$ DSX_VERBOSITY=TRACE ./exe.posix
     24}}}
     25