summaryrefslogtreecommitdiff
path: root/client/mysqldump.c
diff options
context:
space:
mode:
Diffstat (limited to 'client/mysqldump.c')
-rw-r--r--client/mysqldump.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/client/mysqldump.c b/client/mysqldump.c
index f242b55159d..7b7c60c3c56 100644
--- a/client/mysqldump.c
+++ b/client/mysqldump.c
@@ -897,9 +897,6 @@ static void dumpTable(uint numFields, char *table)
MYSQL_FIELD *field;
MYSQL_ROW row;
ulong rownr, row_break, total_length, init_length;
-#if defined(__NETWARE__) && defined(THREAD)
- uint lines= 0;
-#endif
if (verbose)
fprintf(stderr, "-- Sending SELECT query...\n");
@@ -1126,11 +1123,6 @@ static void dumpTable(uint numFields, char *table)
}
else if (!opt_xml)
fputs(");\n", md_result_file);
-#if defined(__NETWARE__) && defined(THREAD)
- /* on a long result the screen could hog the cpu */
- if ((lines++ & 1023) == 0)
- pthread_yield();
-#endif
}
/* XML - close table tag and supress regular output */