Subversion Repositories HelenOS

Rev

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

Rev 173 Rev 180
Line 36... Line 36...
36
 
36
 
37
/** Return base address of current stack
37
/** Return base address of current stack
38
 *
38
 *
39
 * Return the base address of the current stack.
39
 * Return the base address of the current stack.
40
 * The stack is assumed to be STACK_SIZE bytes long.
40
 * The stack is assumed to be STACK_SIZE bytes long.
-
 
41
 * The stack must start on page boundary.
41
 */
42
 */
42
static inline __address get_stack_base(void)
43
static inline __address get_stack_base(void)
43
{
44
{
44
    __address v;
45
    __address v;
45
   
46