Move paraver sources to pv/

This commit is contained in:
Rodrigo Arias 2023-02-02 16:31:43 +01:00 committed by Rodrigo Arias Mallo
parent a91b1c554a
commit f1b130eb39
12 changed files with 7 additions and 10 deletions

View File

@ -27,9 +27,9 @@ add_library(emu STATIC
mux.c
path.c
proc.c
pcf.c
prv.c
pvt.c
pv/pcf.c
pv/prv.c
pv/pvt.c
recorder.c
system.c
task.c

View File

@ -6,8 +6,7 @@
#include "chan.h"
#include "value.h"
#include "utlist.h"
#include "pvt.h"
#include "prv.h"
#include "pv/pvt.h"
static const char chan_fmt[] = "cpu%ld.%s";
static const char *chan_name[] = {

View File

@ -6,7 +6,7 @@
/* Records data into files (Paraver traces only for now) */
#include "pvt.h"
#include "pv/pvt.h"
#include <linux/limits.h>

View File

@ -3,9 +3,7 @@
#include "task.h"
#include "uthash.h"
#include "utlist.h"
#include "pcf.h"
struct task *
task_find(struct task *tasks, uint32_t task_id)

View File

@ -6,7 +6,7 @@
#include <stdint.h>
#include "uthash.h"
#include "pcf.h"
#include "pv/pcf.h"
#include "thread.h"
enum task_state {

View File

@ -1,6 +1,6 @@
#define _GNU_SOURCE
#include "emu/prv.h"
#include "emu/pv/prv.h"
#include "common.h"
#include <stdio.h>