Ignore:
Timestamp:
Jul 21, 2012, 10:20:47 AM (12 years ago)
Author:
karaoui
Message:

+ Adding the init attribute to the mwmr to specify the width of the mwmr channel
+ Fixing bugs in kernels_init

Location:
soft/giet_vm/libs/libsrl
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • soft/giet_vm/libs/libsrl/srl_hw_helpers.h

    r160 r175  
    6363 */
    6464
    65 
     65//static: to avoid multiple definition error
    6666static inline unsigned int srl_cycle_count()
    6767{
    68         return proctime();
     68        return giet_proctime();
    6969}
    7070
     
    7979}
    8080
     81/**
     82 *
     83 */
     84static inline void srl_exit()
     85{
     86    giet_exit();
     87}
     88
    8189#endif
  • soft/giet_vm/libs/libsrl/srl_log.h

    r160 r175  
    4848#define srl_log( l, c ) do {                                                                               \
    4949                if (GET_VERB(l) <= GET_VERB(CONFIG_SRL_VERBOSITY)) {               \
    50             tty_printf(c);                                             \
     50            giet_tty_printf(c);                                             \
    5151                }                                                                                                                          \
    5252        } while (0)
     
    6060#define srl_log_printf( l, ... ) do {                                   \
    6161                if (GET_VERB(l) <= GET_VERB(CONFIG_SRL_VERBOSITY)) {                \
    62             tty_printf(__VA_ARGS__);                                    \
     62            giet_tty_printf(__VA_ARGS__);                                    \
    6363                }                                                                                                                           \
    6464        } while (0)
  • soft/giet_vm/libs/libsrl/srl_mwmr.h

    r160 r175  
    22#define SRL_MWMR_H_
    33
    4 #include "mwmr.h"
     4#include "mwmr_channel.h"
    55
    6 #define  srl_mwmr_t mwmr_channel_t*
     6typedef  mwmr_channel_t* srl_mwmr_t;
    77
    88#define srl_mwmr_write mwmr_write
Note: See TracChangeset for help on using the changeset viewer.