API: add a macro for marking deprecated functions
authorBartosz Golaszewski <bartekgola@gmail.com>
Tue, 2 Oct 2018 12:49:17 +0000 (14:49 +0200)
committerBartosz Golaszewski <bartekgola@gmail.com>
Sun, 7 Oct 2018 08:59:48 +0000 (10:59 +0200)
We want to deprecate the badly designed event loop functions. Introduce
a macro that allows marking API routines as deprecated.

Signed-off-by: Bartosz Golaszewski <bartekgola@gmail.com>
include/gpiod.h

index 513b9e73dd4c38459852c0cc4d38a7b10a644123..727246212ff7c958ddd74421bd9cdc069ff153da 100644 (file)
@@ -69,6 +69,11 @@ struct gpiod_line_bulk;
  */
 #define GPIOD_BIT(nr)          (1UL << (nr))
 
+/**
+ * @brief Marks a public function as deprecated.
+ */
+#define GPIOD_DEPRECATED       __attribute__((deprecated))
+
 /**
  * @}
  *