From: Keith Packard Date: Sat, 27 Aug 2011 03:46:47 +0000 (-0700) Subject: altos: re-order ao_task to match single-arch code X-Git-Tag: identical-build^0 X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=commitdiff_plain;h=1c46c419704f661064d200432eb7efeeb11b3859 altos: re-order ao_task to match single-arch code This is just for testing to make the new build match the old build exactly. Signed-off-by: Keith Packard --- 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 */ };