~cpick/mongrel2/release

« back to all changes in this revision

Viewing changes to src/task/task.h

  • Committer: Chris Pick
  • Date: 2013-06-30 16:39:57 UTC
  • mfrom: (1106.1.15)
  • Revision ID: git-v1:ec39967acb6bc9867ed9b9dc3774304ca6b9c294
Merge tag 'v1.8.1' into debian

Hotfix for github issue 148

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
#include <stdarg.h>
11
11
#include <unistd.h>
12
12
#include <inttypes.h>
13
 
#include <zmq.h>
 
13
#include "zmq_compat.h"
14
14
 
15
15
struct tns_value_t;
16
16
 
122
122
int fdrecv(int, void*, int);
123
123
int fdwait(int, int);
124
124
int fdnoblock(int);
 
125
void fdshutdown();
125
126
 
126
127
extern Task *FDTASK;
127
128
 
158
159
}
159
160
#endif
160
161
#endif
161