From 28de0b545ef5aa7ba370b88c7cc44453235bce24 Mon Sep 17 00:00:00 2001 From: Zak Greant Date: Sun, 24 Mar 2002 10:57:40 +0000 Subject: (PHP mysql_list_processes) Returns a pointer to a result set containing information on the processes running in the MySQL server. (PHP mysql_stat) Returns a string containing information on the status of the MySQL server. @- Added two new functions: mysql_list_processes and mysql_stat (Georg) @- mysql_list_processes() fetches information on the processes running on @ the MySQL server. @- mysql_stat() returns status information for a MySQL server. # Committed for Georg by Zak --- ext/mysql/php_mysql.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'ext/mysql/php_mysql.h') diff --git a/ext/mysql/php_mysql.h b/ext/mysql/php_mysql.h index 5bd73ac9e2..f373653db3 100644 --- a/ext/mysql/php_mysql.h +++ b/ext/mysql/php_mysql.h @@ -58,6 +58,7 @@ PHP_FUNCTION(mysql_db_query); PHP_FUNCTION(mysql_list_dbs); PHP_FUNCTION(mysql_list_tables); PHP_FUNCTION(mysql_list_fields); +PHP_FUNCTION(mysql_list_processes); PHP_FUNCTION(mysql_error); PHP_FUNCTION(mysql_errno); PHP_FUNCTION(mysql_affected_rows); @@ -84,6 +85,7 @@ PHP_FUNCTION(mysql_get_client_info); PHP_FUNCTION(mysql_get_host_info); PHP_FUNCTION(mysql_get_proto_info); PHP_FUNCTION(mysql_get_server_info); +PHP_FUNCTION(mysql_stat); ZEND_BEGIN_MODULE_GLOBALS(mysql) long default_link; -- cgit v1.2.1