| Commit message (Collapse) | Author | Age |
| |
|
|
|
|
| |
Thanks, valgrind.
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
Remember, this is always a mistake:
ptr = realloc(ptr, size);
You still need to free() the original ptr if realloc fails.
|
|
|
|
|
| |
It now increases the buffer size exponentially until it finishes reading
the file.
|
|
|
|
|
|
|
|
| |
* I don't really need to declare all variables at the top of the
function anymore.
* Default-initialize variables more.
* Don't set the output parameter until the object is completely
constructed.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
This adds a basic "worker" program.
You can now do something like
./server &
./worker &
./client ci_run URL REV
and the server should pass a message to worker, after which it should
clone the repository at URL, checkout REV, and try to run the CI script.
It's extremely unfinished: I need to sort out the graceful shutdown, how
the server manages workers, etc.
|