summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
Diffstat (limited to 'src/core')
-rw-r--r--src/core/ao.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/ao.h b/src/core/ao.h
index 05f056fd..c926c001 100644
--- a/src/core/ao.h
+++ b/src/core/ao.h
@@ -37,9 +37,9 @@
struct ao_task {
__xdata void *wchan; /* current wait channel (NULL if running) */
uint16_t alarm; /* abort ao_sleep time */
+ ao_arch_task_members /* any architecture-specific fields */
uint8_t task_id; /* unique id */
__code char *name; /* task name */
- ao_arch_task_members /* any architecture-specific fields */
uint8_t stack[AO_STACK_SIZE]; /* saved stack */
};