/
githubmirror
/
lsof
Обзор
Документация
Войти
/
githubmirror
/
lsof
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
lib/dialects/linux/tests/Makefile
34 строки
546 B
Jiajie Chen
[linux] fix read_id_stat to handle unbalanced parens in process name
04 май 2026, 06:30
04 май 2026, 06:30
b46fc8f
Код
Авторство
О чём код?
HELPERS = \ epoll \ eventfd \ mq_fork \ mq_open \ pidfd \ pipe \ pty \ ux \ mmap \ unbal_parens \ \ open_with_flags \ \ $(NULL) CFLAGS = -g -Wall -std=c99 .PHONY: clean all all: $(HELPERS) clean: rm -f $(HELPERS) *.o # See # https://stackoverflow.com/questions/19964206/weird-posix-message-queue-linking-issue-sometimes-it-doesnt-link-correctly # # We cannot use LDFLAGS here. # -lrt must be at the end of the command line. # mq_open: mq_open.o $(CC) $(CFLAGS) -o $@ $< -lrt mq_fork: mq_fork.o $(CC) $(CFLAGS) -o $@ $< -lrt