List of commits:
Subject Hash Author Date (UTC)
Remove redundant variables and header includes. fb31483b36a5f9e249d8fa88f0c3ff66b1fce6cd Jan Allersma 2018-05-22 11:40:35
Initial commit. 86c80da5a6a677f1686e50996b61fd51632259ba Jan Allersma 2018-05-18 13:12:38
Commit fb31483b36a5f9e249d8fa88f0c3ff66b1fce6cd - Remove redundant variables and header includes.
Author: Jan Allersma
Author date (UTC): 2018-05-22 11:40
Committer name: Jan Allersma
Committer date (UTC): 2018-05-22 11:44
Parent(s): 86c80da5a6a677f1686e50996b61fd51632259ba
Signing key:
Tree: 4f1eeab4d4ad8fccecd22e011268f2a24624b906
File Lines added Lines deleted
main.cpp 0 10
File main.cpp changed (mode: 100644) (index 60d05db..f8b1b20)
1 #include <list>
2 1 #include <iostream> #include <iostream>
3 2
4 3 #include <unistd.h> #include <unistd.h>
5 4 #include <signal.h> #include <signal.h>
6 #include <stdlib.h>
7 #include <sys/types.h>
8 #include <sys/wait.h>
9 #include <signal.h>
10
11 #include <sys/ucontext.h>
12 #include <ucontext.h>
13 5
14 6 void setHandler(void (*handler)(int,siginfo_t *,void *)) { void setHandler(void (*handler)(int,siginfo_t *,void *)) {
15 7 struct sigaction action; struct sigaction action;
 
... ... void faultHandler(int signo, siginfo_t* info, void* extra) {
48 40 } }
49 41
50 42 int main() { int main() {
51 std::list<size_t*> subIterators;
52 size_t pubIterator = 0;
53 43 int* badptr = nullptr; int* badptr = nullptr;
54 44
55 45 setHandler(faultHandler); setHandler(faultHandler);
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/kapstok/Post-mortem-debugging

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/kapstok/Post-mortem-debugging

Clone this repository using git:
git clone git://git.rocketgit.com/user/kapstok/Post-mortem-debugging

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main