Procházet zdrojové kódy

tag_example4: Explicit that we pile up writes

Samuel Thibault před 4 roky
rodič
revize
57b72bea34
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      examples/tag_example/tag_example4.c

+ 1 - 1
examples/tag_example/tag_example4.c

@@ -36,7 +36,7 @@ void cpu_codelet_A(void *descr[], void *_args)
 {
 	(void)descr;
 	int *arg = _args;
-	*arg = 1;
+	STARPU_ATOMIC_OR(arg, 1);
 	fprintf(stderr,"A");
 }