summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psxconfig01
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2015-10-16 08:21:48 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2015-10-26 09:13:19 +0100
commitf97536dcd310a1a15426dcd411d55367019879fc (patch)
treed37a1e12bac98a4df4a2dd70d5de3ee99f23d821 /testsuites/psxtests/psxconfig01
parentbasdefs.h: Add and use RTEMS_DEPRECATED (diff)
downloadrtems-f97536dcd310a1a15426dcd411d55367019879fc.tar.bz2
basdefs.h: Add and use RTEMS_UNUSED
Diffstat (limited to 'testsuites/psxtests/psxconfig01')
-rw-r--r--testsuites/psxtests/psxconfig01/init.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/testsuites/psxtests/psxconfig01/init.c b/testsuites/psxtests/psxconfig01/init.c
index 0a3de1b919..b4c555e836 100644
--- a/testsuites/psxtests/psxconfig01/init.c
+++ b/testsuites/psxtests/psxconfig01/init.c
@@ -218,18 +218,18 @@ static char *get_posix_name(char a, char b, char c, int i)
}
#if !defined(RTEMS_SMP)
-static void task_var_dtor(void *var __attribute__((unused)))
+static void task_var_dtor(void *var RTEMS_UNUSED)
{
/* Do nothing */
}
#endif
-static void *posix_thread(void *arg __attribute__((unused)))
+static void *posix_thread(void *arg RTEMS_UNUSED)
{
rtems_test_assert(0);
}
-static void posix_key_dtor(void *key __attribute__((unused)))
+static void posix_key_dtor(void *key RTEMS_UNUSED)
{
/* Do nothing */
}