|
|
# --- SDE-COPYRIGHT-NOTE-BEGIN --- # This copyright note is auto-generated by ./scripts/Create-CopyPatch. # # Filename: package/.../mdadm/mdadm-2.6.7-no-susv3-legacy.patch # Copyright (C) 2010 The OpenSDE Project # # More information can be found in the files COPYING and README. # # This patch file is dual-licensed. It is available under the license the # patched project is licensed under, as long as it is an OpenSource license # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms # of the GNU General Public License as published by the Free Software # Foundation; either version 2 of the License, or (at your option) any later # version. # --- SDE-COPYRIGHT-NOTE-END ---
Description: Replace usleep() with nanosleep()
usleep() was deprecated by SUSv3 and newer LIBCs are starting to enforce that deprecation.
--- ./mdadm.h.orig 2010-09-25 22:49:01.040000255 +0200
+++ ./mdadm.h 2010-09-25 22:50:27.192000253 +0200
@@ -566,3 +566,10 @@
#define ALGORITHM_RIGHT_ASYMMETRIC 1 #define ALGORITHM_LEFT_SYMMETRIC 2 #define ALGORITHM_RIGHT_SYMMETRIC 3 +
+#define usleep(x) xx_usleep(x)
+static inline void xx_usleep(unsigned k)
+{
+ const struct timespec t = { k/1000000UL, (k%1000000UL)*1000UL };
+ nanosleep(&t, NULL);
+}
|