Changeset 175 for soft/giet_vm/libs/libsrl
- Timestamp:
- Jul 21, 2012, 10:20:47 AM (12 years ago)
- Location:
- soft/giet_vm/libs/libsrl
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/libs/libsrl/srl_hw_helpers.h
r160 r175 63 63 */ 64 64 65 65 //static: to avoid multiple definition error 66 66 static inline unsigned int srl_cycle_count() 67 67 { 68 return proctime();68 return giet_proctime(); 69 69 } 70 70 … … 79 79 } 80 80 81 /** 82 * 83 */ 84 static inline void srl_exit() 85 { 86 giet_exit(); 87 } 88 81 89 #endif -
soft/giet_vm/libs/libsrl/srl_log.h
r160 r175 48 48 #define srl_log( l, c ) do { \ 49 49 if (GET_VERB(l) <= GET_VERB(CONFIG_SRL_VERBOSITY)) { \ 50 tty_printf(c); \50 giet_tty_printf(c); \ 51 51 } \ 52 52 } while (0) … … 60 60 #define srl_log_printf( l, ... ) do { \ 61 61 if (GET_VERB(l) <= GET_VERB(CONFIG_SRL_VERBOSITY)) { \ 62 tty_printf(__VA_ARGS__); \62 giet_tty_printf(__VA_ARGS__); \ 63 63 } \ 64 64 } while (0) -
soft/giet_vm/libs/libsrl/srl_mwmr.h
r160 r175 2 2 #define SRL_MWMR_H_ 3 3 4 #include "mwmr .h"4 #include "mwmr_channel.h" 5 5 6 #define srl_mwmr_t mwmr_channel_t* 6 typedef mwmr_channel_t* srl_mwmr_t; 7 7 8 8 #define srl_mwmr_write mwmr_write
Note: See TracChangeset
for help on using the changeset viewer.