Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Missing copyright headers
authorMartin Quinson <martin.quinson@ens-rennes.fr>
Wed, 25 Oct 2023 17:00:35 +0000 (19:00 +0200)
committerMartin Quinson <martin.quinson@ens-rennes.fr>
Wed, 25 Oct 2023 17:00:35 +0000 (19:00 +0200)
examples/sthread/pthread-mutex-simple.c
examples/sthread/pthread-mutex-simpledeadlock.c

index 1d39141..a7dea6b 100644 (file)
@@ -1,3 +1,8 @@
+/* Copyright (c) 2002-2023. The SimGrid Team. All rights reserved.          */
+
+/* This program is free software; you can redistribute it and/or modify it
+ * under the terms of the license (GNU LGPL) which comes with this package. */
+
 /* Simple test code with no bug  */
 
 #include <pthread.h>
index 09be6c1..92a04a1 100644 (file)
@@ -1,3 +1,8 @@
+/* Copyright (c) 2002-2023. The SimGrid Team. All rights reserved.          */
+
+/* This program is free software; you can redistribute it and/or modify it
+ * under the terms of the license (GNU LGPL) which comes with this package. */
+
 /* Simple test code that may deadlock:
 
    Thread 1 locks mutex1 then mutex2 while thread 2 locks in reverse order.