From 7bd18697f80af648d6ce8affe75227d070954fbf Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Thu, 12 May 2016 11:14:38 +0200 Subject: capture: Compact rtems_capture_record_t Order fields according to alignment to reduce structure internal padding. --- cpukit/libmisc/capture/capture.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpukit/libmisc') diff --git a/cpukit/libmisc/capture/capture.h b/cpukit/libmisc/capture/capture.h index 99c854057a..ab461a92e5 100644 --- a/cpukit/libmisc/capture/capture.h +++ b/cpukit/libmisc/capture/capture.h @@ -153,9 +153,9 @@ typedef struct rtems_capture_control_s */ typedef struct rtems_capture_record_s { - uint32_t events; rtems_capture_time_t time; size_t size; + uint32_t events; rtems_id task_id; } rtems_capture_record_t; -- cgit v1.2.3