/* A stupid little spinning wheel designed to make it look like useful work is being done.
Copyright 1999-2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library test suite.
The GNU MP Library test suite 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.
The GNU MP Library test suite 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
the GNU MP Library test suite. If not, see https://www.gnu.org/licenses/. */
/* "alarm" is not available on mingw32, and the SIGALRM constant is not
defined. Don't bother with a spinner in this case. */ #if ! HAVE_ALARM || ! defined (SIGALRM) #define alarm(n) abort() #define signal(sig,func) SIG_ERR #endif
/* An application can update this to get a count printed with the spinner.
If left at 0, no count is printed. */
unsignedlong spinner_count = 0;
int spinner_wanted = -1; /* -1 uninitialized, 1 wanted, 0 not */ int spinner_tick = 1; /* 1 ready to print, 0 not */
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.