Compare commits
2 commits
0c89aa8bfc
...
0926a4ccd8
Author | SHA1 | Date | |
---|---|---|---|
![]() |
0926a4ccd8 | ||
![]() |
6e5fe34c2b |
2 changed files with 11 additions and 10 deletions
19
Makefile
19
Makefile
|
@ -1,21 +1,20 @@
|
||||||
# SPDX-License-Identifier: MIT
|
# SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
CC = gcc
|
CC = gcc
|
||||||
# CFLAGS = -Wall -Wextra -Werror -Wno-unused-parameter
|
CFLAGS = -Wall -Wextra -Werror -Wno-unused-parameter
|
||||||
# CFLAGS += -Wno-unused-variable -Wno-unused-function
|
CFLAGS += -Wno-unused-variable -Wno-unused-function
|
||||||
# CFLAGS += -Wno-unused-but-set-variable -Wno-unused-value -Wno-unused-label
|
CFLAGS += -Wno-unused-but-set-variable -Wno-unused-value -Wno-unused-label
|
||||||
# CFLAGS += -Wno-unused-result -Wno-unused-const-variable
|
CFLAGS += -Wno-unused-result -Wno-unused-const-variable
|
||||||
|
|
||||||
# ifeq ($(RELEASE), 1)
|
ifeq ($(RELEASE), 1)
|
||||||
# CFLAGS += -fno-exceptions -fno-asynchronous-unwind-tables -fno-ident
|
CFLAGS += -fno-exceptions -fno-asynchronous-unwind-tables -fno-ident
|
||||||
# CFLAGS += -fno-unwind-tables -fno-stack-protector -fno-plt -fno-pic
|
CFLAGS += -fno-unwind-tables -fno-stack-protector -fno-plt -fno-pic
|
||||||
# CFLAGS += -O3 -std=c99 -march=native -mtune=native -fomit-frame-pointer
|
CFLAGS += -O3 -std=c99 -march=native -mtune=native -fomit-frame-pointer
|
||||||
# endif
|
endif
|
||||||
|
|
||||||
# Include debug flags
|
# Include debug flags
|
||||||
CFLAGS += -g -O0 -std=c99 -march=native -mtune=native
|
CFLAGS += -g -O0 -std=c99 -march=native -mtune=native
|
||||||
|
|
||||||
|
|
||||||
C_SOURCES = $(wildcard *.c)
|
C_SOURCES = $(wildcard *.c)
|
||||||
C_HEADERS = $(wildcard *.h)
|
C_HEADERS = $(wildcard *.h)
|
||||||
OBJECTS = $(C_SOURCES:.c=.o)
|
OBJECTS = $(C_SOURCES:.c=.o)
|
||||||
|
|
|
@ -45,6 +45,7 @@ rb_push_back(struct RingBuf *rb, const void *item, MEMCPY_T memcpy_fn)
|
||||||
rb->write_head = rb->buffer;
|
rb->write_head = rb->buffer;
|
||||||
|
|
||||||
rb->count++;
|
rb->count++;
|
||||||
|
return WriteOk;
|
||||||
}
|
}
|
||||||
|
|
||||||
enum ReadResult
|
enum ReadResult
|
||||||
|
@ -61,4 +62,5 @@ rb_pop_front(struct RingBuf *rb, void *item)
|
||||||
rb->read_head = rb->buffer;
|
rb->read_head = rb->buffer;
|
||||||
|
|
||||||
rb->count--;
|
rb->count--;
|
||||||
|
return ReadOk;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue