forked from Imagelibrary/rtems
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.
This commit is contained in:
@@ -67,9 +67,9 @@ typedef time_t qres_atime_t;
|
|||||||
/** Server parameters. */
|
/** Server parameters. */
|
||||||
typedef struct {
|
typedef struct {
|
||||||
/** Relative deadline of the server. */
|
/** Relative deadline of the server. */
|
||||||
uint32_t P;
|
qres_time_t P;
|
||||||
/** Budget (computation time) of the server. */
|
/** Budget (computation time) of the server. */
|
||||||
uint32_t Q;
|
qres_time_t Q;
|
||||||
} qres_params_t;
|
} qres_params_t;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user