Searched hist:32036 (Results 1 - 3 of 3) sorted by relevance

/freebsd-11-stable/usr.bin/truss/
H A Di386-linux.cdiff 86501 Sat Nov 17 15:18:36 MST 2001 des Print the correct return code for successful Linux syscalls.

Submitted by: Vitezslav Novy <vita@fio.cz>
PR: 32036
MFC after: 1 week
H A Damd64-linux32.cdiff 86501 Sat Nov 17 15:18:36 MST 2001 des Print the correct return code for successful Linux syscalls.

Submitted by: Vitezslav Novy <vita@fio.cz>
PR: 32036
MFC after: 1 week
/freebsd-11-stable/sys/kern/
H A Duipc_mbuf.cdiff 32036 Sat Dec 27 23:01:13 MST 1997 bde Restored used include of <sys/malloc.h>. malloc() is not used
here, but kmem_malloc() is used and it takes the same "flags" as
malloc().

Use the mbuf allocation "flags" M_WAIT and M_DONTWAIT consistently.
There is really only one boolean flag, M_DONTWAIT, but the "flags"
were always treated as enum-like values, except in some places here
where the values are tacitly converted to boolean flags. Treat
them as enum-like values everywhere, except where we tacitly assume
that there are only two values in order to convert them to the
corresponding two kmem_malloc() "flags".

Completed in 97 milliseconds