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__ia32PSTHREAD_H__
35
#ifndef LIBC_ia32_PSTHREAD_H_
36
#define __LIBC__ia32PSTHREAD_H__
36
#define LIBC_ia32_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 58... Line 58...
58
    uint32_t tls;
58
    uint32_t tls;
59
} context_t;
59
} context_t;
60
 
60
 
61
#endif
61
#endif
62
 
62
 
63
 
-
 
64
 /** @}
63
/** @}
65
 */
64
 */
66
 
-
 
67
 
-