changed enum and structs names to _t

This commit is contained in:
Jan Hutter
2005-11-24 09:17:51 +00:00
parent 1f9c9180e4
commit 95c61cb956
45 changed files with 199 additions and 178 deletions
+6 -7
View File
@@ -31,15 +31,15 @@
typedef struct event_t event_t;
/**
* @brief Represents an event as it is stored in the event queue.
*
* A event consists of a event time and an assigned job object.
*
*/
typedef struct event_s event_t;
struct event_s{
struct event_t{
/**
* Time to fire the event.
*/
@@ -95,14 +95,13 @@ static event_t *event_create(timeval_t time, job_t *job)
}
typedef struct private_event_queue_t private_event_queue_t;
/**
* @brief Private Variables and Functions of event_queue_t class.
*
*/
typedef struct private_event_queue_s private_event_queue_t;
struct private_event_queue_s {
struct private_event_queue_t {
/**
* Public part.
*/