Changeset 8ff0bd2 in mainline for uspace/lib/c/arch/mips64/src/tls.c
- Timestamp:
- 2011-09-04T11:30:58Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 03bc76a
- Parents:
- d2c67e7 (diff), deac215e (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 moved
-
uspace/lib/c/arch/mips64/src/tls.c (moved) (moved from uspace/srv/hid/fb/ppm.h ) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/arch/mips64/src/tls.c
rd2c67e7 r8ff0bd2 27 27 */ 28 28 29 #ifndef FB_PPM_H_ 30 #define FB_PPM_H_ 29 /** @addtogroup libcmips64 30 * @{ 31 */ 32 /** @file 33 * @ingroup libcmips64 34 */ 31 35 32 #include "fb.h"36 #include <tls.h> 33 37 #include <sys/types.h> 34 38 35 extern int ppm_draw(unsigned char *, size_t, unsigned int, unsigned int, 36 unsigned int, unsigned int, putpixel_cb_t, void *); 37 extern int ppm_get_data(unsigned char *, size_t, unsigned int *, unsigned int *); 39 tcb_t * __alloc_tls(void **data, size_t size) 40 { 41 return tls_alloc_variant_1(data, size); 42 } 38 43 39 #endif 44 void __free_tls_arch(tcb_t *tcb, size_t size) 45 { 46 tls_free_variant_1(tcb, size); 47 } 48 49 /** @} 50 */
Note:
See TracChangeset
for help on using the changeset viewer.
