| commit | cb5dcc68f82ba75cd054122dc8bf85553bf41e1a | [log] [tgz] |
|---|---|---|
| author | Andrew Talbot <Andrew.Talbot@talbotville.com> | Mon Mar 26 20:27:22 2007 +0100 |
| committer | Alexandre Julliard <julliard@winehq.org> | Tue Mar 27 12:38:15 2007 +0200 |
| tree | 79a356fa6b98e00d88c3fd5c021835bea39af2a2 | |
| parent | 4125821a99262565afc68b2269a9955693caf71f [diff] [blame] |
loader: Replace inline static with static inline.
diff --git a/loader/kthread.c b/loader/kthread.c index 1c43be5..2b64e27 100644 --- a/loader/kthread.c +++ b/loader/kthread.c
@@ -167,7 +167,7 @@ * * Get a temporary stack address to run the thread exit code on. */ -inline static char *get_temp_stack(void) +static inline char *get_temp_stack(void) { unsigned int next = interlocked_xchg_add( &next_temp_stack, 1 ); return temp_stacks[next % NB_TEMP_STACKS] + TEMP_STACK_SIZE;