Kapil Arya

Results 13 issues of Kapil Arya

Vfork support requires some refactoring of plugin layers wrt. PRESUSPEND barrier. The make-check-vfork* tests are disabled for now. If someone requires vfork support, please upvote this issue.

Also merge the master branch for updated C++ rendler.

This would allow custom binaries to be created by MANA without needing any relinking within DMTCP. It subsumes #1084 which should be reviewed and merged before this PR.

Test program: ``` #include "dmtcp/include/dmtcp.h" #include int main(int argc, const char **argv) { DmtcpInfo info = dmtcp_register_new_process(&argc, &argv); execvp(info.argv[0], (char* const*) info.argv); perror("Exec failed.\n"); return -1; } ``` To compile:...

Replaces mutex inside RWlock with atomics.