Changeset 407 for trunk/hal/x86_64/core
- Timestamp:
- Nov 7, 2017, 3:08:12 PM (7 years ago)
- Location:
- trunk/hal/x86_64/core
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/hal/x86_64/core/hal_ppm.c
r307 r407 115 115 } 116 116 117 void hal_core_init(boot_info_t *info)118 {119 /* Don't need to do anything */120 } -
trunk/hal/x86_64/core/hal_types.h
r320 r407 59 59 typedef uint64_t vaddr_t; // XXX 60 60 typedef uint64_t pt_entry_t; // XXX 61 62 /***************************************************************************63 * Pthread related types64 **************************************************************************/65 66 typedef uint32_t pthread_t;67 typedef uint32_t pthread_mutexattr_t;68 typedef uint32_t pthread_barrier_t;69 typedef uint32_t pthread_barrierattr_t;70 typedef uint32_t sem_t;71 typedef uint32_t pthread_cond_t;72 typedef uint32_t pthread_condattr_t;73 typedef uint32_t pthread_rwlock_t;74 typedef uint32_t pthread_rwlockattr_t;75 typedef uint32_t pthread_key_t;76 61 77 62 /*************************************************************************** -
trunk/hal/x86_64/core/hal_uspace.c
r299 r407 45 45 } 46 46 47 error_thal_strcpy_to_uspace(char *u_dst, char *k_src, uint32_t max_size)47 void hal_strcpy_to_uspace(char *u_dst, char *k_src, uint32_t max_size) 48 48 { 49 49 x86_panic((char *)__func__); … … 51 51 } 52 52 53 error_thal_strcpy_from_uspace(char *k_dst, char *u_src, uint32_t max_size)53 void hal_strcpy_from_uspace(char *k_dst, char *u_src, uint32_t max_size) 54 54 { 55 55 x86_panic((char *)__func__);
Note: See TracChangeset
for help on using the changeset viewer.