X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fmath%2Fsort.c;h=e03ef5744bfbd8acc0ec9479f96714ccfecc92e8;hb=9b94efd7513afdb12a6023024e00e50801532fee;hp=c4cbc51fe816d711f070dfc9ce9ea6cb75e7ebad;hpb=f5c108becd49d78f4898cab11352291f5689d24e;p=pspp-builds.git diff --git a/src/math/sort.c b/src/math/sort.c index c4cbc51f..e03ef574 100644 --- a/src/math/sort.c +++ b/src/math/sort.c @@ -1,20 +1,18 @@ -/* PSPP - computes sample statistics. +/* PSPP - a program for statistical analysis. Copyright (C) 1997-9, 2000, 2006 Free Software Foundation, Inc. - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation; either version 2 of the - License, or (at your option) any later version. + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - This program is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA - 02110-1301, USA. */ + along with this program. If not, see . */ #include @@ -28,11 +26,12 @@ #include #include #include -#include #include #include #include +#include "xalloc.h" + #include "gettext.h" #define _(msgid) gettext (msgid) @@ -65,6 +64,7 @@ static void output_record (struct sort_writer *); struct casewriter * sort_create_writer (struct case_ordering *ordering) { + size_t value_cnt = case_ordering_get_value_cnt (ordering); struct sort_writer *sort; sort = xmalloc (sizeof *sort); @@ -77,7 +77,7 @@ sort_create_writer (struct case_ordering *ordering) case_ordering_destroy (ordering); - return casewriter_create (&sort_casewriter_class, sort); + return casewriter_create (value_cnt, &sort_casewriter_class, sort); } static void @@ -208,7 +208,7 @@ pqueue_create (const struct case_ordering *ordering) pq = xmalloc (sizeof *pq); pq->ordering = case_ordering_clone (ordering); pq->record_cap - = get_workspace_cases (case_ordering_get_value_cnt (ordering)); + = settings_get_workspace_cases (case_ordering_get_value_cnt (ordering)); if (pq->record_cap > max_buffers) pq->record_cap = max_buffers; else if (pq->record_cap < min_buffers)