Skip to content

Commit

Permalink
Fix ulimit typo
Browse files Browse the repository at this point in the history
  • Loading branch information
fushar committed Jun 28, 2015
1 parent c9eb045 commit 4c12e12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/tcframe/os.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ class UnixOperatingSystem : public OperatingSystem {

if (timeLimitInSeconds != 0 || memoryLimitInMegabytes != 0) {
if (timeLimitInSeconds != 0) {
sout << "ulimt -S -t " << timeLimitInSeconds << "; ";
sout << "ulimit -S -t " << timeLimitInSeconds << "; ";
}
if (memoryLimitInMegabytes != 0) {
sout << "ulimit -S -v " << memoryLimitInMegabytes * 1024 << "; ";
Expand Down

0 comments on commit 4c12e12

Please sign in to comment.