Cleanup Tile build for -Werror

Just the changes needed for the Tile architecture to compile cleanly with
-Werror.
pull/635/merge
Ken Steele 12 years ago committed by Victor Julien
parent f16b339fc4
commit 601c7c8e3c

@ -46,7 +46,7 @@
#ifdef HAVE_MPIPE
/* Number of configured parallel pipelines. */
unsigned int tile_num_pipelines;
int tile_num_pipelines;
#endif
/*

@ -32,7 +32,7 @@
const char *RunModeTileMpipeGetDefaultMode(void);
void RunModeTileMpipeRegister(void);
extern unsigned int tile_num_pipelines;
extern int tile_num_pipelines;
int RunModeTileMpipeWorkers(DetectEngineCtx *);

@ -80,8 +80,8 @@
/* Ignore signals when using spin locks */
#define SCCondT uint8_t
#define SCCondInit(x,y) ({ 0; })
#define SCCondSignal(x)
#define SCCondDestroy(x)
#define SCCondSignal(x) ({ 0; })
#define SCCondDestroy(x) ({ 0; })
static inline void cycle_sleep(int cycles)
{

Loading…
Cancel
Save