summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGedare Bloom <gedare@rtems.org>2012-04-23 09:56:14 -0400
committerGedare Bloom <gedare@rtems.org>2013-12-03 10:58:26 -0500
commit09a8188452cf123daa6a01441c143a18ca7c10d4 (patch)
tree9484205921404e807fc6dd5dc56089879ccf4b09
parentm68k: refactored shared/start.S to shared/start/start.S (diff)
downloadrtems-09a8188452cf123daa6a01441c143a18ca7c10d4.tar.bz2
PR2056: libqos conversion from uint32_t to time_t
AquosA defines qres_params_t using qres_time_t so we should also. This fixes an invalid conversion from uint32_t into time_t as well.
-rw-r--r--cpukit/libqos/qreslib.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/libqos/qreslib.h b/cpukit/libqos/qreslib.h
index 110cc2f6be..5db036a609 100644
--- a/cpukit/libqos/qreslib.h
+++ b/cpukit/libqos/qreslib.h
@@ -67,9 +67,9 @@ typedef time_t qres_atime_t;
/** Server parameters. */
typedef struct {
/** Relative deadline of the server. */
- uint32_t P;
+ qres_time_t P;
/** Budget (computation time) of the server. */
- uint32_t Q;
+ qres_time_t Q;
} qres_params_t;
/**