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 X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=09f5e99a4f9c38dfe144599d5d40d6ba7506a801;p=fw%2Faltos 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 */ };