Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 64955
b: refs/heads/master
c: 24a9ab7
h: refs/heads/master
i:
  64953: 3f16fd2
  64951: c547dc5
v: v3
  • Loading branch information
Chris Zankel committed Aug 27, 2007
1 parent e08dca5 commit 2171e82
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 2b8aea74e78e977b1f9987e23e3e59f3ef4359f4
refs/heads/master: 24a9ab7fa143498802b35c66de10cc3cfdac2c51
2 changes: 1 addition & 1 deletion trunk/include/asm-xtensa/processor.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
* the 1 GB requirement applies to the stack as well.
*/

#define TASK_SIZE 0x40000000
#define TASK_SIZE __XTENSA_UL_CONST(0x40000000)

/*
* General exception cause assigned to debug exceptions. Debug exceptions go
Expand Down
9 changes: 9 additions & 0 deletions trunk/include/asm-xtensa/types.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,15 @@
#ifndef _XTENSA_TYPES_H
#define _XTENSA_TYPES_H


#ifdef __ASSEMBLY__
# define __XTENSA_UL(x) (x)
# define __XTENSA_UL_CONST(x) x
#else
# define __XTENSA_UL(x) ((unsigned long)(x))
# define __XTENSA_UL_CONST(x) x##UL
#endif

#ifndef __ASSEMBLY__

typedef unsigned short umode_t;
Expand Down

0 comments on commit 2171e82

Please sign in to comment.