2016-09-08 14:01:24 +00:00
|
|
|
/**
|
2016-09-11 20:20:15 +00:00
|
|
|
* Author......: See docs/credits.txt
|
2016-09-08 14:01:24 +00:00
|
|
|
* License.....: MIT
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _STDOUT_H
|
|
|
|
#define _STDOUT_H
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <search.h>
|
|
|
|
#include <getopt.h>
|
|
|
|
#include <inttypes.h>
|
|
|
|
#include <signal.h>
|
|
|
|
|
|
|
|
#if defined (_POSIX)
|
|
|
|
#include <pthread.h>
|
|
|
|
#include <pwd.h>
|
|
|
|
#endif // _POSIX
|
|
|
|
|
|
|
|
#define STDOUT_FLAG 0
|
|
|
|
|
2016-09-15 14:02:52 +00:00
|
|
|
void process_stdout (opencl_ctx_t *opencl_ctx, hc_device_param_t *device_param, const uint pws_cnt);
|
2016-09-08 14:01:24 +00:00
|
|
|
|
|
|
|
#endif // _STDOUT_H
|