Currently not used.
@item WORKSPACE
-The maximum amount of memory (in bytes) that @pspp{} will use to store data being processed.
+The maximum amount of memory (in kilobytes) that @pspp{} will use to store data being processed.
If memory in excess of the workspace size is required, then @pspp{} will start
to use temporary files to store the data.
Setting a higher value will, in general, mean procedures will run faster,
static char *
show_workspace (const struct dataset *ds UNUSED)
{
- return xasprintf ("%d", settings_get_workspace ());
+ size_t ws = settings_get_workspace () / 1024L;
+ return xasprintf ("%ld", ws);
}
static char *