Commit:    4b67c781f3fdd93e6a602ee980176720f1ace10e
Author:    Christopher Jones <s...@php.net>         Mon, 26 Aug 2013 15:42:57 
-0700
Parents:   493ad8702733f430f7a2cf31f820688b4dcd9be9
Branches:  master

Link:       
http://git.php.net/?p=php-src.git;a=commitdiff;h=4b67c781f3fdd93e6a602ee980176720f1ace10e

Log:
Use "__" consistently in OCI8 DTrace probe definitions. It maps to "-" in the 
probe name.

Changed paths:
  M  ext/oci8/oci8_dtrace.d


Diff:
diff --git a/ext/oci8/oci8_dtrace.d b/ext/oci8/oci8_dtrace.d
index dfb92bc..2773f78 100644
--- a/ext/oci8/oci8_dtrace.d
+++ b/ext/oci8/oci8_dtrace.d
@@ -17,18 +17,18 @@
 */
 
 provider php {
-       probe oci8__connect_start(char *username, char *dbname, char *charset, 
long session_mode, int persistent, int exclusive);
-       probe oci8__connect_done();
+       probe oci8__connect__start(char *username, char *dbname, char *charset, 
long session_mode, int persistent, int exclusive);
+       probe oci8__connect__done();
        probe oci8__sqltext(char *sql);
        probe oci8__error(int status, long errcode);
-       probe oci8__execute_mode(unsigned int mode);
+       probe oci8__execute__mode(unsigned int mode);
 
-       probe oci8__connect_p_dtor_close(void *connection);
-       probe oci8__connect_p_dtor_release(void *connection);
-       probe oci8__connect_lookup(void *connection, int is_stub);
-       probe oci8__connect_expiry(void *connection, int is_stub, time_t 
idle_expiry, time_t timestamp);
-       probe oci8__connect_type(int is_persistent, int exclusive, void 
*connection, long num_persistent, long num_links);
-       probe oci8__sesspool_create(void *session_pool);
-       probe oci8__sesspool_stats(unsigned long free, unsigned long busy, 
unsigned long open);
-       probe oci8__sesspool_type(int type, void *session_pool);
+       probe oci8__connect__p__dtor__close(void *connection);
+       probe oci8__connect__p__dtor__release(void *connection);
+       probe oci8__connect__lookup(void *connection, int is_stub);
+       probe oci8__connect__expiry(void *connection, int is_stub, time_t 
idle_expiry, time_t timestamp);
+       probe oci8__connect__type(int is_persistent, int exclusive, void 
*connection, long num_persistent, long num_links);
+       probe oci8__sesspool__create(void *session_pool);
+       probe oci8__sesspool__stats(unsigned long free, unsigned long busy, 
unsigned long open);
+       probe oci8__sesspool__type(int type, void *session_pool);
 };


--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to