Revert "Strace is now working again with GUEST_BASE support."
authorRiku Voipio <riku.voipio@nokia.com>
Mon, 20 Apr 2009 14:09:57 +0000 (17:09 +0300)
committerRiku Voipio <riku.voipio@nokia.com>
Mon, 20 Apr 2009 14:09:57 +0000 (17:09 +0300)
This reverts commit 4866cf6bfb937b0052eb3de4f7a9978afeb25bcf.

linux-user/strace.c
linux-user/strace.list

index 2ec1030..b4caffe 100644 (file)
@@ -255,172 +255,6 @@ print_syscall_ret_newselect(const struct syscallname *name, abi_long ret)
 }
 #endif
 
-#define LOCKED_ARG0    (1 << 0)
-#define LOCKED_ARG1    (1 << 1)
-#define LOCKED_ARG2    (1 << 2)
-#define LOCKED_ARG3    (1 << 3)
-#define LOCKED_ARG4    (1 << 4)
-#define LOCKED_ARG5    (1 << 5)
-
-struct args {
-    abi_long   arg_guest;      /* guest argument */
-    uintptr_t  arg_host;       /* host argument */
-    int                arg_locked;     /* is this argument locked? */
-};
-
-/*
- * This function locks strings from guest memory and prints
- * strace output according to format specified in strace.list.
- *
- * First parameter specifies, which guest arguments should be
- * locked (LOCKED_ARG0 - LOCKED_ARG5).
- */
-static void
-print_locked(unsigned int locked, const struct syscallname *name,
-    abi_long arg0, abi_long arg1, abi_long arg2,
-    abi_long arg3, abi_long arg4, abi_long arg5)
-{
-    struct args args[6] = {
-        { arg0, 0, (locked & LOCKED_ARG0) },
-        { arg1, 0, (locked & LOCKED_ARG1) },
-        { arg2, 0, (locked & LOCKED_ARG2) },
-        { arg3, 0, (locked & LOCKED_ARG3) },
-        { arg4, 0, (locked & LOCKED_ARG4) },
-        { arg5, 0, (locked & LOCKED_ARG5) },
-    };
-    struct args *a;
-    int i;
-
-    for (i = 0; i < 6; i++) {
-        a = &args[i];
-        if (a->arg_locked) {
-            a->arg_host = (uintptr_t)lock_user_string(a->arg_guest);
-            if (a->arg_host == 0)
-                goto out;
-        } else {
-            a->arg_host = (uintptr_t)a->arg_guest;
-        }
-    }
-
-    /*
-     * Now we can have all strings locked and converted into host
-     * addresses.
-     */
-    gemu_log(name->format,
-        name->name,
-        args[0].arg_host,
-        args[1].arg_host,
-        args[2].arg_host,
-        args[3].arg_host,
-        args[4].arg_host,
-        args[5].arg_host);
-
-out:
-    for (i = 0; i < 6; i++) {
-        a = &args[i];
-        if (a->arg_locked)
-            unlock_user((void *)a->arg_host, a->arg_guest, 0);
-    }
-}
-
-static void
-print_1st_locked(const struct syscallname *name,
-    abi_long arg0, abi_long arg1, abi_long arg2,
-    abi_long arg3, abi_long arg4, abi_long arg5)
-{
-    print_locked(LOCKED_ARG0, name, arg0, arg1, arg2, arg3, arg4, arg5);
-}
-
-static void
-print_2nd_locked(const struct syscallname *name,
-    abi_long arg0, abi_long arg1, abi_long arg2,
-    abi_long arg3, abi_long arg4, abi_long arg5)
-{
-    print_locked(LOCKED_ARG1, name, arg0, arg1, arg2, arg3, arg4, arg5);
-}
-
-static void
-print_1st_and_2nd_locked(const struct syscallname *name,
-    abi_long arg0, abi_long arg1, abi_long arg2,
-    abi_long arg3, abi_long arg4, abi_long arg5)
-{
-    print_locked(LOCKED_ARG0 | LOCKED_ARG1, name, arg0, arg1, arg2,
-        arg3, arg4, arg5);
-}
-
-static void
-print_1st_and_3rd_locked(const struct syscallname *name,
-    abi_long arg0, abi_long arg1, abi_long arg2,
-    abi_long arg3, abi_long arg4, abi_long arg5)
-{
-    print_locked(LOCKED_ARG0 | LOCKED_ARG2, name, arg0, arg1, arg2,
-        arg3, arg4, arg5);
-}
-
-static void
-print_1st_2nd_and_3rd_locked(const struct syscallname *name,
-    abi_long arg0, abi_long arg1, abi_long arg2,
-    abi_long arg3, abi_long arg4, abi_long arg5)
-{
-    print_locked(LOCKED_ARG0 | LOCKED_ARG1 | LOCKED_ARG2, name,
-        arg0, arg1, arg2, arg3, arg4, arg5);
-}
-
-static void
-print_2nd_and_4th_locked(const struct syscallname *name,
-    abi_long arg0, abi_long arg1, abi_long arg2,
-    abi_long arg3, abi_long arg4, abi_long arg5)
-{
-    print_locked(LOCKED_ARG1 | LOCKED_ARG3, name, arg0, arg1, arg2,
-        arg3, arg4, arg5);
-}
-
-/*
- * Here is list of syscalls that we support reading in (locking)
- * strings from guest addresses.  Every syscall that has "%s" in its
- * parameter list and doesn't have specific print function, should
- * be defined here.
- */
-#define print_access   print_1st_locked
-#define print_chdir    print_1st_locked
-#define print_chmod    print_1st_locked
-#define print_creat    print_1st_locked
-#define print_execv    print_1st_locked
-#define print_faccessat print_2nd_locked
-#define print_fchmodat print_2nd_locked
-#define print_fchown   print_1st_locked
-#define print_fchownat print_2nd_locked
-#define print_futimesat        print_2nd_locked
-#define print_link     print_1st_and_2nd_locked
-#define print_linkat   print_2nd_and_4th_locked
-#define print_lstat    print_1st_locked
-#define print_lstat64  print_1st_locked
-#define print_mkdir    print_1st_locked
-#define print_mkdirat  print_2nd_locked
-#define print_mknod    print_1st_locked
-#define print_mknodat  print_2nd_locked
-#define print_mq_open  print_1st_locked
-#define print_mq_unlink        print_1st_locked
-#define print_fstatat64        print_2nd_locked
-#define print_newfstatat print_2nd_locked
-#define print_open     print_1st_locked
-#define print_openat   print_2nd_locked
-#define print_readlink print_1st_locked
-#define print_readlinkat print_2nd_locked
-#define print_rename   print_1st_and_2nd_locked
-#define print_renameat print_2nd_and_4th_locked
-#define print_stat     print_1st_locked
-#define print_stat64   print_1st_locked
-#define print_statfs   print_1st_locked
-#define print_statfs64 print_1st_locked
-#define print_symlink  print_1st_and_2nd_locked
-#define print_symlinkat        print_1st_and_3rd_locked
-#define print_umount   print_1st_2nd_and_3rd_locked
-#define print_unlink   print_1st_locked
-#define print_unlinkat print_2nd_locked
-#define print_utime    print_1st_locked
-#define print_utimensat        print_2nd_locked
-
 /*
  * An array of all of the syscalls we know about
  */
@@ -451,10 +285,6 @@ print_syscall(int num,
             } else {
                 /* XXX: this format system is broken because it uses
                    host types and host pointers for strings */
-                /*
-                 * It now works when it has print_xxx_locked function
-                 * as its printing function.
-                 */
                 if( scnames[i].format != NULL )
                     format = scnames[i].format;
                 gemu_log(format,scnames[i].name, arg1,arg2,arg3,arg4,arg5,arg6);
index 5f59115..3f688db 100644 (file)
@@ -1,13 +1,8 @@
-/*
- * Note that if you change format strings in these, check also
- * that corresponding print functions are able to handle string
- * locking correctly (see strace.c).
- */
 #ifdef TARGET_NR_accept
 { TARGET_NR_accept, "accept" , "%s(%d,%#x,%#x)", NULL, NULL },
 #endif
 #ifdef TARGET_NR_access
-{ TARGET_NR_access, "access" , "%s(\"%s\",%#o)", print_access, NULL },
+{ TARGET_NR_access, "access" , "%s(\"%s\",%#o)", NULL, NULL },
 #endif
 #ifdef TARGET_NR_acct
 { TARGET_NR_acct, "acct" , NULL, NULL, NULL },
 { TARGET_NR_capset, "capset" , NULL, NULL, NULL },
 #endif
 #ifdef TARGET_NR_chdir
-{ TARGET_NR_chdir, "chdir" , "%s(\"%s\")", print_chdir, NULL },
+{ TARGET_NR_chdir, "chdir" , "%s(\"%s\")", NULL, NULL },
 #endif
 #ifdef TARGET_NR_chmod
-{ TARGET_NR_chmod, "chmod" , "%s(\"%s\",%#o)", print_chmod, NULL },
+{ TARGET_NR_chmod, "chmod" , "%s(\"%s\",%#o)", NULL, NULL },
 #endif
 #ifdef TARGET_NR_chown
 { TARGET_NR_chown, "chown" , NULL, NULL, NULL },
@@ -94,7 +89,7 @@
 { TARGET_NR_connect, "connect" , "%s(%d,%#x,%d)", NULL, NULL },
 #endif
 #ifdef TARGET_NR_creat
-{ TARGET_NR_creat, "creat" , "%s(\"%s\",%#o)", print_creat, NULL },
+{ TARGET_NR_creat, "creat" , "%s(\"%s\",%#o)", NULL, NULL },
 #endif
 #ifdef TARGET_NR_create_module
 { TARGET_NR_create_module, "create_module" , NULL, NULL, NULL },
 { TARGET_NR_epoll_wait_old, "epoll_wait_old" , NULL, NULL, NULL },
 #endif
 #ifdef TARGET_NR_execv
-{ TARGET_NR_execv, "execv" , "%s(\"%s\",%ld,%ld,%ld,%ld,%ld)\n",
-    print_execv, NULL },
+{ TARGET_NR_execv, "execv" , "%s(\"%s\",%ld,%ld,%ld,%ld,%ld)\n", NULL, NULL },
 #endif
 #ifdef TARGET_NR_execve
 { TARGET_NR_execve, "execve" , NULL, print_execve, NULL },
 { TARGET_NR_exit_group, "exit_group" , "%s(%d)\n", NULL, NULL },
 #endif
 #ifdef TARGET_NR_faccessat
-{ TARGET_NR_faccessat, "faccessat" , "%s(%d,\"%s\",%#o,%#x)",
-    print_faccessat, NULL },
+{ TARGET_NR_faccessat, "faccessat" , "%s(%d,\"%s\",%#o,%#x)", NULL, NULL },
 #endif
 #ifdef TARGET_NR_fadvise64
 { TARGET_NR_fadvise64, "fadvise64" , NULL, NULL, NULL },
 { TARGET_NR_fchmod, "fchmod" , "%s(%d,%#o)", NULL, NULL },
 #endif
 #ifdef TARGET_NR_fchmodat
-{ TARGET_NR_fchmodat, "fchmodat" , "%s(%d,\"%s\",%#o,%#x)",
-    print_fchmodat, NULL },
+{ TARGET_NR_fchmodat, "fchmodat" , "%s(%d,\"%s\",%#o,%#x)", NULL, NULL },
 #endif
 #ifdef TARGET_NR_fchown
-{ TARGET_NR_fchown, "fchown" , "%s(\"%s\",%d,%d)", print_fchown, NULL },
+{ TARGET_NR_fchown, "fchown" , "%s(\"%s\",%d,%d)", NULL, NULL },
 #endif
 #ifdef TARGET_NR_fchown32
 { TARGET_NR_fchown32, "fchown32" , NULL, NULL, NULL },
 #endif
 #ifdef TARGET_NR_fchownat
-{ TARGET_NR_fchownat, "fchownat" , "%s(%d,\"%s\",%d,%d,%#x)",
-    print_fchownat, NULL },
+{ TARGET_NR_fchownat, "fchownat" , "%s(%d,\"%s\",%d,%d,%#x)", NULL, NULL },
 #endif
 #ifdef TARGET_NR_fcntl
 { TARGET_NR_fcntl, "fcntl" , NULL, NULL, NULL },
 { TARGET_NR_futex, "futex" , NULL, NULL, NULL },
 #endif
 #ifdef TARGET_NR_futimesat
-{ TARGET_NR_futimesat, "futimesat" , "%s(%d,\"%s\",%p)",
-    print_futimesat, NULL },
+{ TARGET_NR_futimesat, "futimesat" , "%s(%d,\"%s\",%p)", NULL, NULL },
 #endif
 #ifdef TARGET_NR_getcwd
 { TARGET_NR_getcwd, "getcwd" , "%s(%p,%d)", NULL, NULL },
 { TARGET_NR_lgetxattr, "lgetxattr" , NULL, NULL, NULL },
 #endif
 #ifdef TARGET_NR_link
-{ TARGET_NR_link, "link" , "%s(\"%s\",\"%s\")", print_link, NULL },
+{ TARGET_NR_link, "link" , "%s(\"%s\",\"%s\")", NULL, NULL },
 #endif
 #ifdef TARGET_NR_linkat
-{ TARGET_NR_linkat, "linkat" , "%s(%d,\"%s\",%d,\"%s\",%#x)",
-    print_linkat, NULL },
+{ TARGET_NR_linkat, "linkat" , "%s(%d,\"%s\",%d,\"%s\",%#x)", NULL, NULL },
 #endif
 #ifdef TARGET_NR_Linux
 { TARGET_NR_Linux, "Linux" , NULL, NULL, NULL },
 { TARGET_NR_lsetxattr, "lsetxattr" , NULL, NULL, NULL },
 #endif
 #ifdef TARGET_NR_lstat
-{ TARGET_NR_lstat, "lstat" , "%s(\"%s\",%p)", print_lstat, NULL },
+{ TARGET_NR_lstat, "lstat" , "%s(\"%s\",%p)", NULL, NULL },
 #endif
 #ifdef TARGET_NR_lstat64
-{ TARGET_NR_lstat64, "lstat64" , "%s(\"%s\",%p)", print_lstat64, NULL },
+{ TARGET_NR_lstat64, "lstat64" , "%s(\"%s\",%p)", NULL, NULL },
 #endif
 #ifdef TARGET_NR_madvise
 { TARGET_NR_madvise, "madvise" , NULL, NULL, NULL },
 { TARGET_NR_mincore, "mincore" , NULL, NULL, NULL },
 #endif
 #ifdef TARGET_NR_mkdir
-{ TARGET_NR_mkdir, "mkdir" , "%s(\"%s\",%#o)", print_mkdir, NULL },
+{ TARGET_NR_mkdir, "mkdir" , "%s(\"%s\",%#o)", NULL, NULL },
 #endif
 #ifdef TARGET_NR_mkdirat
-{ TARGET_NR_mkdirat, "mkdirat" , "%s(%d,\"%s\",%#o)", print_mkdirat, NULL },
+{ TARGET_NR_mkdirat, "mkdirat" , "%s(%d,\"%s\",%#o)", NULL, NULL },
 #endif
 #ifdef TARGET_NR_mknod
-{ TARGET_NR_mknod, "mknod" , "%s(\"%s\",%#o,%#x)", print_mknod, NULL },
+{ TARGET_NR_mknod, "mknod" , "%s(\"%s\",%#o,%#x)", NULL, NULL },
 #endif
 #ifdef TARGET_NR_mknodat
-{ TARGET_NR_mknodat, "mknodat" , "%s(%d,\"%s\",%#o,%#x)",
-    print_mknodat, NULL },
+{ TARGET_NR_mknodat, "mknodat" , "%s(%d,\"%s\",%#o,%#x)", NULL, NULL },
 #endif
 #ifdef TARGET_NR_mlock
 { TARGET_NR_mlock, "mlock" , NULL, NULL, NULL },
 { TARGET_NR_mq_notify, "mq_notify" , "%s(%d,%p)", NULL, NULL },
 #endif
 #ifdef TARGET_NR_mq_open
-{ TARGET_NR_mq_open, "mq_open" , "%s(\"/%s\",%#x,%#o,%p)",
-    print_mq_open, NULL },
+{ TARGET_NR_mq_open, "mq_open" , "%s(\"/%s\",%#x,%#o,%p)", NULL, NULL },
 #endif
 #ifdef TARGET_NR_mq_timedreceive
 { TARGET_NR_mq_timedreceive, "mq_timedreceive" , "%s(%d,%p,%d,%u,%p)", NULL, NULL },
 { TARGET_NR_mq_timedsend, "mq_timedsend" , "%s(%d,%p,%d,%u,%p)", NULL, NULL },
 #endif
 #ifdef TARGET_NR_mq_unlink
-{ TARGET_NR_mq_unlink, "mq_unlink" , "%s(%s)", print_mq_unlink, NULL },
+{ TARGET_NR_mq_unlink, "mq_unlink" , "%s(%s)", NULL, NULL },
 #endif
 #ifdef TARGET_NR_mremap
 { TARGET_NR_mremap, "mremap" , NULL, NULL, NULL },
 { TARGET_NR_nanosleep, "nanosleep" , NULL, NULL, NULL },
 #endif
 #ifdef TARGET_NR_fstatat64
-{ TARGET_NR_fstatat64, "fstatat64" , "%s(%d,\"%s\",%p,%#x)",
-    print_fstatat64, NULL },
+{ TARGET_NR_fstatat64, "fstatat64" , "%s(%d,\"%s\",%p,%#x)", NULL, NULL },
 #endif
 #ifdef TARGET_NR_newfstatat
-{ TARGET_NR_newfstatat, "newfstatat" , "%s(%d,\"%s\",%p,%#x)",
-    print_newfstatat, NULL },
+{ TARGET_NR_newfstatat, "newfstatat" , "%s(%d,\"%s\",%p,%#x)", NULL, NULL },
 #endif
 #ifdef TARGET_NR__newselect
 { TARGET_NR__newselect, "_newselect" , NULL, print_newselect, print_syscall_ret_newselect },
 { TARGET_NR_olduname, "olduname" , NULL, NULL, NULL },
 #endif
 #ifdef TARGET_NR_open
-{ TARGET_NR_open, "open" , "%s(\"%s\",%#x,%#o)", print_open, NULL },
+{ TARGET_NR_open, "open" , "%s(\"%s\",%#x,%#o)", NULL, NULL },
 #endif
 #ifdef TARGET_NR_openat
-{ TARGET_NR_openat, "openat" , "%s(%d,\"%s\",%#x,%#o)",
-    print_openat, NULL },
+{ TARGET_NR_openat, "openat" , "%s(%d,\"%s\",%#x,%#o)", NULL, NULL },
 #endif
 #ifdef TARGET_NR_osf_adjtime
 { TARGET_NR_osf_adjtime, "osf_adjtime" , NULL, NULL, NULL },
 { TARGET_NR_readdir, "readdir" , NULL, NULL, NULL },
 #endif
 #ifdef TARGET_NR_readlink
-{ TARGET_NR_readlink, "readlink" , "%s(\"%s\",%p,%d)",
-    print_readlink, NULL },
+{ TARGET_NR_readlink, "readlink" , "%s(\"%s\",%p,%d)", NULL, NULL },
 #endif
 #ifdef TARGET_NR_readlinkat
-{ TARGET_NR_readlinkat, "readlinkat" , "%s(%d,\"%s\",%p,%d)",
-    print_readlinkat, NULL },
+{ TARGET_NR_readlinkat, "readlinkat" , "%s(%d,\"%s\",%p,%d)", NULL, NULL },
 #endif
 #ifdef TARGET_NR_readv
 { TARGET_NR_readv, "readv" , NULL, NULL, NULL },
 { TARGET_NR_removexattr, "removexattr" , NULL, NULL, NULL },
 #endif
 #ifdef TARGET_NR_rename
-{ TARGET_NR_rename, "rename" , "%s(\"%s\",\"%s\")", print_rename, NULL },
+{ TARGET_NR_rename, "rename" , "%s(\"%s\",\"%s\")", NULL, NULL },
 #endif
 #ifdef TARGET_NR_renameat
-{ TARGET_NR_renameat, "renameat" , "%s(%d,\"%s\",%d,\"%s\")",
-    print_renameat, NULL },
+{ TARGET_NR_renameat, "renameat" , "%s(%d,\"%s\",%d,\"%s\")", NULL, NULL },
 #endif
 #ifdef TARGET_NR_request_key
 { TARGET_NR_request_key, "request_key" , NULL, NULL, NULL },
 { TARGET_NR_ssetmask, "ssetmask" , NULL, NULL, NULL },
 #endif
 #ifdef TARGET_NR_stat
-{ TARGET_NR_stat, "stat" , "%s(\"%s\",%p)", print_stat, NULL },
+{ TARGET_NR_stat, "stat" , "%s(\"%s\",%p)", NULL, NULL },
 #endif
 #ifdef TARGET_NR_stat64
-{ TARGET_NR_stat64, "stat64" , "%s(\"%s\",%p)", print_stat64, NULL },
+{ TARGET_NR_stat64, "stat64" , "%s(\"%s\",%p)", NULL, NULL },
 #endif
 #ifdef TARGET_NR_statfs
-{ TARGET_NR_statfs, "statfs" , "%s(\"%s\",%p)", print_statfs, NULL },
+{ TARGET_NR_statfs, "statfs" , "%s(\"%s\",%p)", NULL, NULL },
 #endif
 #ifdef TARGET_NR_statfs64
-{ TARGET_NR_statfs64, "statfs64" , "%s(\"%s\",%p)", print_statfs64, NULL },
+{ TARGET_NR_statfs64, "statfs64" , "%s(\"%s\",%p)", NULL, NULL },
 #endif
 #ifdef TARGET_NR_stime
 { TARGET_NR_stime, "stime" , NULL, NULL, NULL },
 { TARGET_NR_swapon, "swapon" , NULL, NULL, NULL },
 #endif
 #ifdef TARGET_NR_symlink
-{ TARGET_NR_symlink, "symlink" , "%s(\"%s\",\"%s\")",
-    print_symlink, NULL },
+{ TARGET_NR_symlink, "symlink" , "%s(\"%s\",\"%s\")", NULL, NULL },
 #endif
 #ifdef TARGET_NR_symlinkat
-{ TARGET_NR_symlinkat, "symlinkat" , "%s(\"%s\",%d,\"%s\")",
-    print_symlinkat, NULL },
+{ TARGET_NR_symlinkat, "symlinkat" , "%s(\"%s\",%d,\"%s\")", NULL, NULL },
 #endif
 #ifdef TARGET_NR_sync
 { TARGET_NR_sync, "sync" , NULL, NULL, NULL },
 { TARGET_NR_umask, "umask" , "%s(%#o)", NULL, NULL },
 #endif
 #ifdef TARGET_NR_umount
-{ TARGET_NR_umount, "umount" , "%s(\"%s\",\"%s\",\"%s\",%#x,%p)",
-    print_umount, NULL },
+{ TARGET_NR_umount, "umount" , "%s(\"%s\",\"%s\",\"%s\",%#x,%p)", NULL, NULL },
 #endif
 #ifdef TARGET_NR_umount2
 { TARGET_NR_umount2, "umount2" , NULL, NULL, NULL },
 { TARGET_NR_uname, "uname" , "%s(%p)", NULL, NULL },
 #endif
 #ifdef TARGET_NR_unlink
-{ TARGET_NR_unlink, "unlink" , "%s(\"%s\")", print_unlink, NULL },
+{ TARGET_NR_unlink, "unlink" , "%s(\"%s\")", NULL, NULL },
 #endif
 #ifdef TARGET_NR_unlinkat
-{ TARGET_NR_unlinkat, "unlinkat" , "%s(%d,\"%s\",%#x)", print_unlinkat, NULL },
+{ TARGET_NR_unlinkat, "unlinkat" , "%s(%d,\"%s\",%#x)", NULL, NULL },
 #endif
 #ifdef TARGET_NR_unshare
 { TARGET_NR_unshare, "unshare" , NULL, NULL, NULL },
 { TARGET_NR_ustat, "ustat" , "%s(%#x,%p)", NULL, NULL },
 #endif
 #ifdef TARGET_NR_utime
-{ TARGET_NR_utime, "utime" , "%s(\"%s\",%p)", print_utime, NULL },
+{ TARGET_NR_utime, "utime" , "%s(\"%s\",%p)", NULL, NULL },
 #endif
 #ifdef TARGET_NR_utimes
 { TARGET_NR_utimes, "utimes" , NULL, NULL, NULL },
 { TARGET_NR_writev, "writev" , "%s(%d,%p,%#x)", NULL, NULL },
 #endif
 #ifdef TARGET_NR_utimensat
-{ TARGET_NR_utimensat, "utimensat", "%s(%d,\"%s\",%p,%#x)",
-    print_utimensat, NULL },
+{ TARGET_NR_utimensat, "utimensat", "%s(%d,\"%s\",%p,%#x)", NULL, NULL },
 #endif