| 29 |
#include <sys/shm.h> |
#include <sys/shm.h> |
| 30 |
#include <sys/ipc.h> |
#include <sys/ipc.h> |
| 31 |
|
|
|
#define MAX_SPLIT_FILE_LINES 65536 |
|
|
|
|
| 32 |
struct shm_header_t |
struct shm_header_t |
| 33 |
{ |
{ |
| 34 |
int shmid; |
int shmid; |
| 121 |
return -1; |
return -1; |
| 122 |
} |
} |
| 123 |
|
|
| 124 |
line_total = split_data_lines(p_data, SCREEN_COLS, line_offsets, MAX_SPLIT_FILE_LINES); |
line_total = split_data_lines(p_data, SCREEN_COLS, line_offsets, MAX_SPLIT_FILE_LINES, 1); |
|
if (line_total >= MAX_SPLIT_FILE_LINES) |
|
|
{ |
|
|
log_error("split_data_lines() truncated over limit lines\n"); |
|
|
} |
|
| 125 |
|
|
| 126 |
// Allocate shared memory |
// Allocate shared memory |
| 127 |
proj_id = (int)(time(NULL) % getpid()); |
proj_id = (int)(time(NULL) % getpid()); |