Subversion Repositories Kolibri OS

Rev

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

Rev 3593 Rev 3805
Line 7... Line 7...
7
                  void *stacklow, void *stackhigh)
7
                  void *stacklow, void *stackhigh)
8
{
8
{
9
    int retval;
9
    int retval;
Line 10... Line 10...
10
 
10
 
11
    __asm__ __volatile__(               // save stack limits
11
    __asm__ __volatile__(               // save stack limits
12
    "movl %0, %%fs:4    \n\t"           // use TLS
12
    "movl %0, %%fs:8    \n\t"           // use TLS
13
    "movl %1, %%fs:8    \n\t"
13
    "movl %1, %%fs:12    \n\t"
Line 14... Line 14...
14
    ::"r"(stacklow), "r"(stackhigh));
14
    ::"r"(stacklow), "r"(stackhigh));
Line 15... Line 15...
15
 
15