1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/tests/sizeof_tcb/main.c
2014-10-30 16:37:10 +01:00

57 lines
1014 B
C

/*
* Copyright (C) 2014 René Kijewski <rene.kijewski@fu-berlin.de>
*
* This file is subject to the terms and conditions of the GNU Lesser
* General Public License v2.1. See the file LICENSE in the top level
* directory for more details.
*/
/**
* @ingroup tests
* @{
*
* @file
* @brief Print the size of tcb_t.
*
* @author René Kijewski <rene.kijewski@fu-berlin.de>
*
* @}
*/
#include <stdio.h>
#include <stddef.h>
#include "tcb.h"
#define P(NAME) printf("\t%-*s%4zu%4zu\n", 11, #NAME, sizeof(((tcb_t *) 0)->NAME), offsetof(tcb_t, NAME));
int main(void)
{
puts("\tmember, sizeof, offsetof");
printf("sizeof(tcb_t): %zu\n", sizeof(tcb_t));
P(sp);
P(status);
P(pid);
P(priority);
P(rq_entry);
P(wait_data);
P(msg_waiters);
P(msg_queue);
P(msg_array);
#ifdef DEVELHELP
P(name);
#endif
#if defined(DEVELHELP) || defined(SCHED_TEST_STACK)
P(stack_start);
#endif
#ifdef DEVELHELP
P(stack_size);
#endif
puts("Done.");
return 0;
}