aboutsummaryrefslogtreecommitdiff
path: root/benchmarks/ipc-bench/files/patch-source_common_process.c
blob: 661d21c74e48d11b770e31cc1de473fbd4ddfb30 (plain) (blame)
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
39
40
41
42
43
44
--- source/common/process.c.orig	2022-04-28 15:09:32 UTC
+++ source/common/process.c
@@ -55,7 +55,7 @@ pid_t start_process(char *argv[]) {
 		// second is an array of arguments, where the
 		// command path has to be included as well
 		// (that's why argv[0] first)
-		if (execv(argv[0], argv) == -1) {
+		if (execvp(argv[0], argv) == -1) {
 			throw("Error opening child process");
 		}
 	}
@@ -83,24 +83,18 @@ void start_children(char *prefix, int argc, char *argv
 	char server_name[100];
 	char client_name[100];
 
-	char *build_path = find_build_path();
-
 	// clang-format off
 	sprintf(
 		server_name,
-		"%s/%s/%s-%s",
-		build_path,
+		"%s-%s",
 		prefix,
-		prefix,
 		"server"
 	);
 
 	sprintf(
 		client_name,
-		"%s/%s/%s-%s",
-		build_path,
+		"%s-%s",
 		prefix,
-		prefix,
 		"client"
 	);
 	// clang-format on
@@ -111,5 +105,4 @@ void start_children(char *prefix, int argc, char *argv
 	waitpid(c1_id, NULL, WUNTRACED);
 	waitpid(c2_id, NULL, WUNTRACED);
 
-	free(build_path);
 }