|
From: Mike F. <va...@ge...> - 2010-10-13 14:07:09
|
On Wednesday, October 13, 2010 08:51:27 CAI Qian wrote:
> mmap/munmap /dev/zero: a common way of malloc()/free() anonymous memory
> on Solaris.
what Garrett meant is that this is the subject, not the second line of the
changelog. are you actually using git here, or just fudging the details and
hoping people wont notice ? your e-mails are not directly usable by git which
means if we want to apply your patch, we need to screw around with it first.
please fix your git flow.
> +option_t options[] = {
needs at least static, and be nice if it were const too
> + while (waitpid(-1, NULL, WNOHANG) > 0);
shouldnt you be checking the exit status of the children ? otherwise, a
tst_brkm() call by them wont be noticed. and why are you using WNOHANG ? if
the parent happens to hit this point before some children exit, you basically
ignore them too.
-mike
|