wangzhengquan
2020-07-21 4bf1fc0a7e9a4611fc322ebe1cb39a671aa2ed57
reconstruct
1个文件已添加
26 文件已重命名
1个文件已修改
9 ■■■■■ 已修改文件
Makefile 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/Makefile 7 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/libshm_queue.a 补丁 | 查看 | 原始文档 | blame | 历史
src/logger_factory.h 补丁 | 查看 | 原始文档 | blame | 历史
src/queue/hashtable.c 补丁 | 查看 | 原始文档 | blame | 历史
src/queue/include/array_lock_free_queue.h 补丁 | 查看 | 原始文档 | blame | 历史
src/queue/include/array_lock_free_queue2.h 补丁 | 查看 | 原始文档 | blame | 历史
src/queue/include/hashtable.h 补丁 | 查看 | 原始文档 | blame | 历史
src/queue/include/linked_lock_free_queue.h 补丁 | 查看 | 原始文档 | blame | 历史
src/queue/include/lock_free_queue.h 补丁 | 查看 | 原始文档 | blame | 历史
src/queue/include/mem_pool.h 补丁 | 查看 | 原始文档 | blame | 历史
src/queue/include/mm.h 补丁 | 查看 | 原始文档 | blame | 历史
src/queue/include/shm_allocator.h 补丁 | 查看 | 原始文档 | blame | 历史
src/queue/include/shm_mm.h 补丁 | 查看 | 原始文档 | blame | 历史
src/queue/include/shm_queue.h 补丁 | 查看 | 原始文档 | blame | 历史
src/queue/include/shm_queue_wrapper.h 补丁 | 查看 | 原始文档 | blame | 历史
src/queue/libshm_queue.a 补丁 | 查看 | 原始文档 | blame | 历史
src/queue/libshm_queue.so 补丁 | 查看 | 原始文档 | blame | 历史
src/queue/mm.c 补丁 | 查看 | 原始文档 | blame | 历史
src/queue/shm_mm.c 补丁 | 查看 | 原始文档 | blame | 历史
src/queue/shm_queue_wrapper.c 补丁 | 查看 | 原始文档 | blame | 历史
src/queue/socket.c.bk 补丁 | 查看 | 原始文档 | blame | 历史
src/socket/include/mod_socket.h 补丁 | 查看 | 原始文档 | blame | 历史
src/socket/include/shm_socket.h 补丁 | 查看 | 原始文档 | blame | 历史
src/socket/mod_socket.c 补丁 | 查看 | 原始文档 | blame | 历史
src/socket/shm_socket.c 补丁 | 查看 | 原始文档 | blame | 历史
src/util/sem_util.c 补丁 | 查看 | 原始文档 | blame | 历史
src/util/sem_util.h 补丁 | 查看 | 原始文档 | blame | 历史
Makefile
@@ -1,4 +1,4 @@
DIRS = queue test test2 demo
DIRS = src test test2 demo
all:
    for i in $(DIRS); do \
src/Makefile
File was renamed from queue/Makefile
@@ -9,7 +9,8 @@
# 开源工具包
LDLIBS += -lusgcommon
#INCLUDE += -I$(ROOT)/device/include
MINCLUDE := -I./queue -I./queue/include -I./socket -I./socket/include -I./util -I./util/include
INCLUDE += $(MINCLUDE)
PLATFORM=$(shell $(ROOT)/systype.sh)
include $(ROOT)/Make.defines.$(PLATFORM)
@@ -17,7 +18,7 @@
LIBSQUEUE = libshm_queue.a
DLIBSQUEUE = libshm_queue.so
SOURCES := $(wildcard *.c)
SOURCES := $(wildcard *.c ./queue/*.c ./socket/*.c ./util/*.c)
OBJS   = $(patsubst %.c, %.o, $(SOURCES)) 
MYLIBS = $(LIBSQUEUE) $(DLIBSQUEUE)
@@ -54,7 +55,7 @@
    install -d $(PREFIX)/lib/
    install -m 644 $^ $(PREFIX)/lib/
    install -d $(PREFIX)/include/
    install -m 644 include/* $(PREFIX)/include/
    install -m 644 $(MINCLUDE)/* $(PREFIX)/include/
clean:
    rm -f $(TEMPFILES)
src/libshm_queue.a
Binary files differ
src/logger_factory.h
src/queue/hashtable.c
src/queue/include/array_lock_free_queue.h
src/queue/include/array_lock_free_queue2.h
src/queue/include/hashtable.h
src/queue/include/linked_lock_free_queue.h
src/queue/include/lock_free_queue.h
src/queue/include/mem_pool.h
src/queue/include/mm.h
src/queue/include/shm_allocator.h
src/queue/include/shm_mm.h
src/queue/include/shm_queue.h
src/queue/include/shm_queue_wrapper.h
src/queue/libshm_queue.a
Binary files differ
src/queue/libshm_queue.so
Binary files differ
src/queue/mm.c
src/queue/shm_mm.c
src/queue/shm_queue_wrapper.c
src/queue/socket.c.bk
src/socket/include/mod_socket.h
src/socket/include/shm_socket.h
src/socket/mod_socket.c
src/socket/shm_socket.c
src/util/sem_util.c
src/util/sem_util.h