/
githubmirror
/
julia
Обзор
Документация
Войти
/
githubmirror
/
julia
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/embedding/libdl_embedding.c
12 строк
299 B
Cody Tapscott
Handle `waitpid` race condition when `SIGCHLD` is set to `SIG_IGN` (#57241)
04 фев 2025, 19:42
Не верифицирован
04 фев 2025, 19:42
daf865e
Код
Авторство
О чём код?
#include <dlfcn.h> #include <stdio.h> #include <signal.h> int main(int argc, char *argv[]) { // This test doesn't do much yet, except check // https://github.com/JuliaLang/julia/issues/57240 signal(SIGCHLD, SIG_IGN); void *handle = dlopen(LIBJULIA_PATH, RTLD_LAZY); return 0; }