Subversion Repositories HelenOS

Rev

Rev 2990 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2990 Rev 2991
Line 56... Line 56...
56
    void *rtld_dynamic;
56
    void *rtld_dynamic;
57
    /** Runtime-linker load bias */
57
    /** Runtime-linker load bias */
58
    uintptr_t rtld_bias;
58
    uintptr_t rtld_bias;
59
} pcb_t;
59
} pcb_t;
60
 
60
 
61
static inline __pcb_get(void) {
61
static inline pcb_t *__pcb_get(void) {
62
    return (pcb_t *)PCB_ADDRESS;
62
    return (pcb_t *)PCB_ADDRESS;
63
}
63
}
64
 
64
 
65
#endif
65
#endif
66
 
66