whitespaces
This commit is contained in:
parent
9ab3497c7e
commit
5553e3eb54
1 changed files with 10 additions and 6 deletions
|
@ -38,17 +38,19 @@
|
||||||
typedef struct gfxQueueASync {
|
typedef struct gfxQueueASync {
|
||||||
struct gfxQueueASyncItem *head;
|
struct gfxQueueASyncItem *head;
|
||||||
struct gfxQueueASyncItem *tail;
|
struct gfxQueueASyncItem *tail;
|
||||||
} gfxQueueASync;
|
} gfxQueueASync;
|
||||||
|
|
||||||
typedef struct gfxQueueGSync {
|
typedef struct gfxQueueGSync {
|
||||||
struct gfxQueueGSyncItem *head;
|
struct gfxQueueGSyncItem *head;
|
||||||
struct gfxQueueGSyncItem *tail;
|
struct gfxQueueGSyncItem *tail;
|
||||||
gfxSem sem;
|
gfxSem sem;
|
||||||
} gfxQueueGSync;
|
} gfxQueueGSync;
|
||||||
|
|
||||||
typedef struct gfxQueueFSync {
|
typedef struct gfxQueueFSync {
|
||||||
struct gfxQueueFSyncItem *head;
|
struct gfxQueueFSyncItem *head;
|
||||||
struct gfxQueueFSyncItem *tail;
|
struct gfxQueueFSyncItem *tail;
|
||||||
gfxSem sem;
|
gfxSem sem;
|
||||||
} gfxQueueFSync;
|
} gfxQueueFSync;
|
||||||
/* @} */
|
/* @} */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -57,14 +59,16 @@ typedef struct gfxQueueFSync {
|
||||||
*/
|
*/
|
||||||
typedef struct gfxQueueASyncItem {
|
typedef struct gfxQueueASyncItem {
|
||||||
struct gfxQueueASyncItem *next;
|
struct gfxQueueASyncItem *next;
|
||||||
} gfxQueueASyncItem;
|
} gfxQueueASyncItem;
|
||||||
|
|
||||||
typedef struct gfxQueueGSyncItem {
|
typedef struct gfxQueueGSyncItem {
|
||||||
struct gfxQueueGSyncItem *next;
|
struct gfxQueueGSyncItem *next;
|
||||||
} gfxQueueGSyncItem;
|
} gfxQueueGSyncItem;
|
||||||
|
|
||||||
typedef struct gfxQueueFSyncItem {
|
typedef struct gfxQueueFSyncItem {
|
||||||
struct gfxQueueFSyncItem *next;
|
struct gfxQueueFSyncItem *next;
|
||||||
gfxSem sem;
|
gfxSem sem;
|
||||||
} gfxQueueFSyncItem;
|
} gfxQueueFSyncItem;
|
||||||
/* @} */
|
/* @} */
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue