Home
last modified time | relevance | path

Searched refs:patch (Results 1 – 7 of 7) sorted by relevance

/libevent-2.1.12/
H A Dcheckpatch.sh20 $ git format-patch --stdout -1 | $0 -p
24 $ git format-patch --stdout -2
25 $ $0 *.patch
36 -p - treat as patch
82 options[patch]=0
94 options[patch]=1
102 options[patch]=0
108 options[patch]=0
114 options[patch]=0
171 { git format-patch --stdout "$@" -1 | clang_format_diff; }
H A DCONTRIBUTING.md13 # Check patch
14 git format-patch --stdout -1 | ./checkpatch.sh -p
18 git format-patch --stdout -2
19 ./checkpatch.sh *.patch
H A DChangeLog-1.439 o When running set[ug]id, don't check the environment. Based on a patch from OpenBSD.
91 o Support multi-line HTTP headers; based on a patch from Moshe Litvin
209 …hat lack it; mainly, this will make Windows http.c work better. Original patch by Lubomir Marinov.
230 o Make the logic for active events work better with internal events; patch from Christopher Layne.
231 …o We do not need to specially remove a timeout before calling event_del; patch from Christopher La…
H A DChangeLog-2.0974 o Small cleanups on freebsd-connect-refused patch. (57b7248)
1038 o Support sendfile on Solaris: patch from Caitlin Mercer.
1120 …en-generated files to rely on event2 includes; based on work by jmansion; patch from Zack Weinberg.
1121 …o Allow specifying the output filename for rpcgen; based on work by jmansion; patch from Zack Wein…
1136 o improve documentation on event_base_loopexit; patch from Scott Lamb
1236 o support for edge-triggered events on epoll and kqueue backends: patch from Valery Kholodkov
1245 o Support multi-line HTTP headers; based on a patch from Moshe Litvin
H A DChangeLog92 There is also one patch that introduce new functionality, this is 546a366c,
/libevent-2.1.12/cmake/
H A DVersionViaGit.cmake16 # message(" patch=${EVENT_GIT___VERSION_PATCH}")
/libevent-2.1.12/test/
H A Dregress.c2608 int major, minor, patch, n; in test_version() local
2619 n = sscanf(vstr, "%d.%d.%d", &major, &minor, &patch); in test_version()
2621 tt_int_op((vint&0xffffff00), ==, ((major<<24)|(minor<<16)|(patch<<8))); in test_version()