summaryrefslogtreecommitdiff
path: root/lib/tsystem.c
blob: 13137813fb6d4484e93c45ba0e9daa7c663e1629 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#include "system.h"

#include <pthread.h>

#include <rpmsq.h>
#include <popt.h>

#include "debug.h"

static void *
other_thread(void *dat)
{
    const char * cmd = (const char *)dat;
    const char ** av = NULL;
    int ac = 0;
    int xx = poptParseArgvString(cmd, &ac, &av);
    if (xx)
	return ((void *)xx);
fprintf(stderr, "thread(%lu): pid %u %s\n", pthread_self(), getpid(), cmd);
    return ((void *) rpmsqExecve(av));
}

int main(int argc, char *argv[])
{
    pthread_t pth;
    const char * cmd = argv[1];

    if (cmd == NULL)
	cmd = "/bin/sleep 30";
    pthread_create(&pth, NULL, other_thread, (void *)cmd);
fprintf(stderr, "  main(%lu): pid %u other(%lu)\n", pthread_self(), getpid(), pth);

    sleep(2);
    pthread_cancel(pth);

    pthread_join(pth, NULL);
    return 0;
}