altos: re-order ao_task to match single-arch code identical-build
authorKeith Packard <keithp@keithp.com>
Sat, 27 Aug 2011 03:46:47 +0000 (20:46 -0700)
committerKeith Packard <keithp@keithp.com>
Sat, 27 Aug 2011 03:56:25 +0000 (20:56 -0700)
This is just for testing to make the new build match the old build
exactly.

Signed-off-by: Keith Packard <keithp@keithp.com>
src/core/ao.h

index 05f056fd5e8b577091286b1418e5ef73f3b4d905..c926c00152ed28986ea7f8713b4433d6f1eb74d2 100644 (file)
@@ -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 */
 };