tico 0.1
Mechanical Watch Terminal Timegrapher
mysync.h
Go to the documentation of this file.
1#pragma once
2
3#include "myarr.h"
4
5#include <stdio.h>
6
20void waitClose(FILE* file);
21
25void wait(void);
26
33int syncwrite(int* input, size_t ArrayLength, const char* file);
34
38void printTOD(FILE* out);
39
44void syncAppendMyarr(struct myarr* input, FILE* file);
45
51void* threadAppendMyarr(void* inStruct);
52
void syncAppendMyarr(struct myarr *input, FILE *file)
@ in a separate thread.
Definition: mysync.c:256
void * threadAppendMyarr(void *inStruct)
@ file in a separate thread.
Definition: mysync.c:217
int syncwrite(int *input, size_t ArrayLength, const char *file)
@ separate thread.
Definition: mysync.c:407
void printTOD(FILE *out)
@ with synchronization.
Definition: mysync.c:477
void wait(void)
@ proceeding.
Definition: mysync.c:207
void waitClose(FILE *file)
@ .
Definition: mysync.c:179
A struct to hold an array of integers or an array of doubles, along with the length of the arrays.
Definition: myarr.h:14