-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support Bitrig #607
Support Bitrig #607
Conversation
Evan Martin » ninja #516 SUCCESS |
Evan Martin » ninja #517 FAILURE |
Evan Martin » ninja #518 SUCCESS |
@@ -152,7 +152,7 @@ struct SubprocessTest : public testing::Test { | |||
|
|||
// OS X's process limit is less than 1025 by default | |||
// (|sysctl kern.maxprocperuid| is 709 on 10.7 and 10.8 and less prior to that). | |||
#if defined(linux) || defined(__OpenBSD__) | |||
#if !defined(__APPLE__) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does this test work on Windows?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
anyone able to test?
Evan Martin » ninja #523 SUCCESS |
@@ -224,7 +224,7 @@ bool SubprocessSet::DoWork() { | |||
return interrupted_; | |||
} | |||
|
|||
#else // linux || __OpenBSD__ | |||
#else // linux || __OpenBSD__ || __Bitrig__ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should probably be // !defined(USE_PPOLL)
Evan Martin » ninja #524 SUCCESS |
That looks good, thanks. If bitrig is an OpenBSD fork, I wonder if bitrig wouldn't have less work if they defined |
This adds support for Bitrig, an OpenBSD fork.