Print loaded files and errors, enable loading and searching
This commit is contained in:
@@ -11,6 +11,7 @@ struct ThreadCtx {
|
||||
};
|
||||
|
||||
struct WorkQueue {
|
||||
int32_t thread_count;
|
||||
WorkQueueEntry entries[256];
|
||||
int64_t volatile index_to_write;
|
||||
int64_t volatile index_to_read;
|
||||
@@ -27,4 +28,6 @@ struct ThreadStartupInfo {
|
||||
|
||||
void PushWork(WorkQueue *wq, void *data, WorkQueueCallback *callback);
|
||||
void InitWorkQueue(WorkQueue *queue, uint32_t thread_count, ThreadStartupInfo *info);
|
||||
void WaitUntilCompletion(WorkQueue *wq);
|
||||
void WaitUntilCompletion(WorkQueue *wq);
|
||||
|
||||
int64_t AtomicIncrement(volatile int64_t *i);
|
||||
Reference in New Issue
Block a user