thread.c 1.6 KB
Newer Older
1 2 3 4
#include "../perf.h"
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
5
#include "session.h"
6 7
#include "thread.h"
#include "util.h"
8
#include "debug.h"
9

10
struct thread *thread__new(pid_t pid)
11
{
12
	struct thread *self = zalloc(sizeof(*self));
13 14

	if (self != NULL) {
15 16
		map_groups__init(&self->mg);
		self->pid = pid;
17 18 19
		self->comm = malloc(32);
		if (self->comm)
			snprintf(self->comm, 32, ":%d", self->pid);
20 21 22 23 24
	}

	return self;
}

25 26 27 28 29 30 31
void thread__delete(struct thread *self)
{
	map_groups__exit(&self->mg);
	free(self->comm);
	free(self);
}

32 33
int thread__set_comm(struct thread *self, const char *comm)
{
34 35
	int err;

36 37 38
	if (self->comm)
		free(self->comm);
	self->comm = strdup(comm);
39 40 41 42 43
	err = self->comm == NULL ? -ENOMEM : 0;
	if (!err) {
		self->comm_set = true;
	}
	return err;
44 45
}

46 47 48 49 50 51 52 53 54 55 56
int thread__comm_len(struct thread *self)
{
	if (!self->comm_len) {
		if (!self->comm)
			return 0;
		self->comm_len = strlen(self->comm);
	}

	return self->comm_len;
}

57
size_t thread__fprintf(struct thread *thread, FILE *fp)
58
{
59 60
	return fprintf(fp, "Thread %d %s\n", thread->pid, thread->comm) +
	       map_groups__fprintf(&thread->mg, verbose, fp);
61 62
}

63 64
void thread__insert_map(struct thread *self, struct map *map)
{
65
	map_groups__fixup_overlappings(&self->mg, map, verbose, stderr);
66
	map_groups__insert(&self->mg, map);
67 68
}

69 70 71
int thread__fork(struct thread *self, struct thread *parent)
{
	int i;
72

73 74 75 76 77 78 79 80
	if (parent->comm_set) {
		if (self->comm)
			free(self->comm);
		self->comm = strdup(parent->comm);
		if (!self->comm)
			return -ENOMEM;
		self->comm_set = true;
	}
81

82
	for (i = 0; i < MAP__NR_TYPES; ++i)
83
		if (map_groups__clone(&self->mg, &parent->mg, i) < 0)
84 85 86
			return -ENOMEM;
	return 0;
}