Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8a158589 authored by Arnaldo Carvalho de Melo's avatar Arnaldo Carvalho de Melo
Browse files

perf bench: Add missing pthread.h include for CPU_*() macros

Cc: David Ahern <dsahern@gmail.com>
Cc: Davidlohr Bueso <dbueso@suse.de>
Cc: Hitoshi Mitake <mitake@dcl.info.waseda.ac.jp>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Wang Nan <wangnan0@huawei.com>
Link: http://lkml.kernel.org/n/tip-48qbfv7tqs8n8ey74lbyfjtq@git.kernel.org


Signed-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
parent c8b5f2c9
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -8,8 +8,10 @@
 * many threads and futexes as possible.
 */

/* For the CLR_() macros */
#include <pthread.h>

#include "../perf.h"
#include "../util/util.h"
#include "../util/stat.h"
#include <subcmd/parse-options.h>
#include "../util/header.h"
@@ -17,9 +19,7 @@
#include "futex.h"

#include <err.h>
#include <stdlib.h>
#include <sys/time.h>
#include <pthread.h>

static unsigned int nthreads = 0;
static unsigned int nsecs    = 10;
+3 −1
Original line number Diff line number Diff line
@@ -2,6 +2,9 @@
 * Copyright (C) 2015 Davidlohr Bueso.
 */

/* For the CLR_() macros */
#include <pthread.h>

#include "../perf.h"
#include "../util/util.h"
#include "../util/stat.h"
@@ -13,7 +16,6 @@
#include <err.h>
#include <stdlib.h>
#include <sys/time.h>
#include <pthread.h>

struct worker {
	int tid;
+3 −1
Original line number Diff line number Diff line
@@ -8,6 +8,9 @@
 * requeues without waking up any tasks -- thus mimicking a regular futex_wait.
 */

/* For the CLR_() macros */
#include <pthread.h>

#include "../perf.h"
#include "../util/util.h"
#include "../util/stat.h"
@@ -19,7 +22,6 @@
#include <err.h>
#include <stdlib.h>
#include <sys/time.h>
#include <pthread.h>

static u_int32_t futex1 = 0, futex2 = 0;

+3 −1
Original line number Diff line number Diff line
@@ -7,6 +7,9 @@
 * it can be used to measure futex_wake() changes.
 */

/* For the CLR_() macros */
#include <pthread.h>

#include "../perf.h"
#include "../util/util.h"
#include "../util/stat.h"
@@ -18,7 +21,6 @@
#include <err.h>
#include <stdlib.h>
#include <sys/time.h>
#include <pthread.h>

struct thread_data {
	pthread_t worker;
+3 −1
Original line number Diff line number Diff line
@@ -8,6 +8,9 @@
 * one or more tasks, and thus the waitqueue is never empty.
 */

/* For the CLR_() macros */
#include <pthread.h>

#include "../perf.h"
#include "../util/util.h"
#include "../util/stat.h"
@@ -19,7 +22,6 @@
#include <err.h>
#include <stdlib.h>
#include <sys/time.h>
#include <pthread.h>

/* all threads will block on the same futex */
static u_int32_t futex1 = 0;
Loading