]> sigrok.org Git - libsigrok.git/commitdiff
Consistently use _exit prefix for functions.
authorUwe Hermann <redacted>
Sun, 30 Jan 2011 18:22:13 +0000 (19:22 +0100)
committerUwe Hermann <redacted>
Sun, 30 Jan 2011 18:26:32 +0000 (19:26 +0100)
backend.c
sigrok-proto.h

index 46b7397f09112ca5eb328c9f621548d9bb77d6fc..eb23ad229bd36238380b17fd4c37a89a636ed8a9 100644 (file)
--- a/backend.c
+++ b/backend.c
@@ -26,7 +26,7 @@ int sr_init(void)
 }
 
 /* TODO: Should return int to be able to report back error codes. */
-void sr_cleanup(void)
+void sr_exit(void)
 {
        device_close_all();
 }
index 4c31bfe63f484b2425353a6882d644c12e6e4008..bba85b206239464a8c177699d0953ef7979125cd 100644 (file)
@@ -23,7 +23,7 @@
 /*--- backend.c -------------------------------------------------------------*/
 
 int sr_init(void);
-void sr_cleanup(void);
+void sr_exit(void);
 
 /*--- datastore.c -----------------------------------------------------------*/