Fix naming
CI / build-and-analyze (push) Successful in 51s

This commit is contained in:
2026-09-22 18:41:11 +03:00
parent eebbc88a2c
commit b70ee2d359
5 changed files with 16 additions and 16 deletions
+5 -5
View File
@@ -3,12 +3,12 @@
#include <stdlib.h>
struct CgeThreadContext {
CgeThreadCallback callback;
CgeThreadCb callback;
void *data;
};
static unsigned __stdcall threadRun(void *context) {
CgeThreadCallback callback;
CgeThreadCb callback;
void *data;
callback = ((struct CgeThreadContext *)context)->callback;
@@ -18,8 +18,8 @@ static unsigned __stdcall threadRun(void *context) {
_endthreadex(0);
}
static int threadInit(CgeThread *thread, size_t stack,
CgeThreadCallback callback, void *data, int *result) {
static int threadInit(CgeThread *thread, size_t stack, CgeThreadCb callback,
void *data, int *result) {
struct CgeThreadContext *context;
context = malloc(sizeof(*context));
@@ -42,7 +42,7 @@ static int threadInit(CgeThread *thread, size_t stack,
return 1;
}
CgeThread *CgeThreadNew(size_t stack, CgeThreadCallback callback, void *data,
CgeThread *CgeThreadNew(size_t stack, CgeThreadCb callback, void *data,
int *result) {
CgeThread *thread;