notify: removed the "Notify" typedef

Typedefs shouldn't be used, use the bare struct names instead.
This commit is contained in:
Max Kellermann
2008-10-08 10:49:16 +02:00
parent d562ba5fbb
commit b159832418
7 changed files with 29 additions and 19 deletions

View File

@@ -21,11 +21,11 @@
#include "os_compat.h"
typedef struct notify {
struct notify {
pthread_mutex_t mutex;
pthread_cond_t cond;
int pending;
} Notify;
};
#define NOTIFY_INITIALIZER { \
.mutex = PTHREAD_MUTEX_INITIALIZER, \