Server IP : 172.67.216.182 / Your IP : 162.158.163.252 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/server/mysql/src/dbug/ |
Upload File : |
/* this is modified version of the original example main.c fixed so that it could compile and run in MySQL source tree */ #ifdef NDEBUG /* We are testing dbug */ #undef NDEBUG #endif #include <my_global.h> /* This includes dbug.h */ #include <my_thread.h> int main (argc, argv) int argc; char *argv[]; { int result, ix; extern int factorial(int); my_thread_global_init(); { DBUG_ENTER ("main"); DBUG_PROCESS (argv[0]); for (ix = 1; ix < argc && argv[ix][0] == '-'; ix++) { switch (argv[ix][1]) { case '#': DBUG_PUSH (&(argv[ix][2])); break; } } for (; ix < argc; ix++) { DBUG_PRINT ("args", ("argv[%d] = %s", ix, argv[ix])); result = factorial (atoi(argv[ix])); printf ("%d\n", result); } DBUG_RETURN (0); } }