summaryrefslogtreecommitdiffstats
path: root/dbug/my_main.c
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-13 12:24:36 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-13 12:24:36 +0000
commit06eaf7232e9a920468c0f8d74dcf2fe8b555501c (patch)
treee2c7b5777f728320e5b5542b6213fd3591ba51e2 /dbug/my_main.c
parentInitial commit. (diff)
downloadmariadb-06eaf7232e9a920468c0f8d74dcf2fe8b555501c.tar.xz
mariadb-06eaf7232e9a920468c0f8d74dcf2fe8b555501c.zip
Adding upstream version 1:10.11.6.upstream/1%10.11.6
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'dbug/my_main.c')
-rw-r--r--dbug/my_main.c35
1 files changed, 35 insertions, 0 deletions
diff --git a/dbug/my_main.c b/dbug/my_main.c
new file mode 100644
index 00000000..80db4d82
--- /dev/null
+++ b/dbug/my_main.c
@@ -0,0 +1,35 @@
+/*
+ this is modified version of the original example main.c
+ fixed so that it could compile and run in MySQL source tree
+*/
+
+#include <my_global.h> /* This includes dbug.h */
+#include <my_sys.h>
+#include <my_pthread.h>
+
+int main (int argc, char **argv)
+{
+ register int result, ix;
+ extern int factorial(int);
+ MY_INIT(argv[0]);
+
+ {
+ 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_LEAVE;
+ }
+ my_end(0);
+ exit(0);
+}