This repository has been archived by the owner on Nov 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
Makefile: add an install rule #17
Open
seirl
wants to merge
24
commits into
cms-dev:master
Choose a base branch
from
seirl:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Commits on Jan 18, 2016
-
Configuration menu - View commit details
-
Copy full SHA for 8b84b17 - Browse repository at this point
Copy the full SHA 8b84b17View commit details -
Merge pull request #10 from algorithm-ninja/increase_num_boxes
Increase default num boxes
Configuration menu - View commit details
-
Copy full SHA for c231b13 - Browse repository at this point
Copy the full SHA c231b13View commit details
Commits on Jan 22, 2016
-
var_len of default environment rules was not initialized
This made it impossible to override the default rules (which is unlikely to do, though :)).
Configuration menu - View commit details
-
Copy full SHA for a3a2c4d - Browse repository at this point
Copy the full SHA a3a2c4dView commit details
Commits on Jan 23, 2016
-
Also documented behavior wrt. std{in,out,err}.
Configuration menu - View commit details
-
Copy full SHA for ab6ec57 - Browse repository at this point
Copy the full SHA ab6ec57View commit details -
It turned out that Isolate's signal handling is prone to race conditions, especially if the machine is under heavy load. Among other problems: o If multiple SIGINT-like signals were received in a quick succession, the "UGH" message appeared. o SIGPIPE could have been caught when writing the meta-file to a pipe. This could trigger the same problem as above. o There was a short time window between starting the child process and setting up signal handlers, where an interrupt signal could have killed the master process and leave the child running on its own. o If the master process received a SIGSEGV-like signal, it was reported as an error of the sandboxed process instead of a proper internal error. I switched to handling different signals differently: o Interrupt signals are handled synchronously like we already did with SIGALRM. o Signals like SIGSEGV are reported as internal errors after killing the child process. o SIGPIPE, SIGUSR1, and SIGUSR2 are ignored. Also, we set up the signal handlers right before calling clone() and reset them inside the child process, so we should not catch a signal unprepared.
Configuration menu - View commit details
-
Copy full SHA for c228c56 - Browse repository at this point
Copy the full SHA c228c56View commit details
Commits on Jan 24, 2016
-
Call watchdog timer every 100 ms
This significantly decreases the latency of killing the process after it exceeds its time limit. Based on a patch by Alexander Crustev.
Configuration menu - View commit details
-
Copy full SHA for 6d7aa39 - Browse repository at this point
Copy the full SHA 6d7aa39View commit details -
Changed default box location to /var/local/lib/isolate/
The previous location in /tmp/box/ was prone to symlink attacks.
Configuration menu - View commit details
-
Copy full SHA for 8af30e7 - Browse repository at this point
Copy the full SHA 8af30e7View commit details -
Makefile: Do not use "asciidoc -D" when building man pages
Apparently, the switch is ignored for man pages and newer versions of asciidoc warn on its use.
Configuration menu - View commit details
-
Copy full SHA for 4693333 - Browse repository at this point
Copy the full SHA 4693333View commit details -
Fixed race condition in make_dir()
Inspired by pull request #7 by @bblackham and patch by @austrin.
Configuration menu - View commit details
-
Copy full SHA for ce9dad0 - Browse repository at this point
Copy the full SHA ce9dad0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6b46017 - Browse repository at this point
Copy the full SHA 6b46017View commit details -
Configuration menu - View commit details
-
Copy full SHA for c8b0eef - Browse repository at this point
Copy the full SHA c8b0eefView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4d364d5 - Browse repository at this point
Copy the full SHA 4d364d5View commit details -
Configuration menu - View commit details
-
Copy full SHA for cb04630 - Browse repository at this point
Copy the full SHA cb04630View commit details -
Configuration menu - View commit details
-
Copy full SHA for 450096d - Browse repository at this point
Copy the full SHA 450096dView commit details
Commits on Aug 16, 2016
-
Configuration menu - View commit details
-
Copy full SHA for 8fc6594 - Browse repository at this point
Copy the full SHA 8fc6594View commit details -
Configuration menu - View commit details
-
Copy full SHA for e7f421b - Browse repository at this point
Copy the full SHA e7f421bView commit details -
cgroups: Fix inheritance of cpusets
It was broken by commit a40942b. The bug was probably harmless: the cpu/mem sets of the subgroup got initialized to empty strings by the kernel, which caused it to use the settings of the parent group anyway.
Configuration menu - View commit details
-
Copy full SHA for 9fa5760 - Browse repository at this point
Copy the full SHA 9fa5760View commit details -
Configuration menu - View commit details
-
Copy full SHA for a01a65e - Browse repository at this point
Copy the full SHA a01a65eView commit details
Commits on Oct 10, 2016
-
Configuration menu - View commit details
-
Copy full SHA for a2590eb - Browse repository at this point
Copy the full SHA a2590ebView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3bf44c4 - Browse repository at this point
Copy the full SHA 3bf44c4View commit details
Commits on Oct 22, 2016
-
Configuration menu - View commit details
-
Copy full SHA for e3c1368 - Browse repository at this point
Copy the full SHA e3c1368View commit details
Commits on Oct 24, 2016
-
Merge pull request #18 from hermanzdosilovic/file-size
Added f to short_opts
Configuration menu - View commit details
-
Copy full SHA for 0ede685 - Browse repository at this point
Copy the full SHA 0ede685View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7f55e36 - Browse repository at this point
Copy the full SHA 7f55e36View commit details
Commits on Mar 3, 2017
-
Configuration menu - View commit details
-
Copy full SHA for 424e3a6 - Browse repository at this point
Copy the full SHA 424e3a6View commit details
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.