Subversion Repositories HelenOS

Rev

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

Rev 1787 Rev 1866
Line 30... Line 30...
30
 * @{
30
 * @{
31
 */
31
 */
32
/** @file
32
/** @file
33
 */
33
 */
34
 
34
 
35
#ifndef __LIBC__amd64PSTHREAD_H__
35
#ifndef LIBC_amd64_PSTHREAD_H_
36
#define __LIBC__amd64PSTHREAD_H__
36
#define LIBC_amd64_PSTHREAD_H_
37
 
37
 
38
#include <types.h>
38
#include <types.h>
39
 
39
 
40
/* According to ABI the stack MUST be aligned on
40
/* According to ABI the stack MUST be aligned on
41
 * 16-byte boundary. If it is not, the va_arg calling will
41
 * 16-byte boundary. If it is not, the va_arg calling will
Line 61... Line 61...
61
    uint64_t tls;
61
    uint64_t tls;
62
} context_t;
62
} context_t;
63
 
63
 
64
#endif
64
#endif
65
 
65
 
66
 
-
 
67
 /** @}
66
/** @}
68
 */
67
 */
69
 
-
 
70
 
-