~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/innobase/include/ut0wqueue.h

  • Committer: Brian Aker
  • Date: 2008-11-04 15:39:09 UTC
  • mfrom: (575.1.2 devel)
  • Revision ID: brian@tangent.org-20081104153909-c72hn65udxs1ccal
Merge of Monty's work

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 
18
18
/********************************************************************
19
19
Create a new work queue. */
20
 
 
 
20
UNIV_INTERN
21
21
ib_wqueue_t*
22
22
ib_wqueue_create(void);
23
23
/*===================*/
25
25
 
26
26
/********************************************************************
27
27
Free a work queue. */
28
 
 
 
28
UNIV_INTERN
29
29
void
30
30
ib_wqueue_free(
31
31
/*===========*/
33
33
 
34
34
/********************************************************************
35
35
Add a work item to the queue. */
36
 
 
 
36
UNIV_INTERN
37
37
void
38
38
ib_wqueue_add(
39
39
/*==========*/
44
44
 
45
45
/********************************************************************
46
46
Wait for a work item to appear in the queue. */
47
 
 
 
47
UNIV_INTERN
48
48
void*
49
49
ib_wqueue_wait(
50
50
                                /* out: work item */