Imported Upstream version 3.0.4
[debian/gnuradio] / gnuradio-core / src / lib / runtime / gr_pagesize.cc
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2003 Free Software Foundation, Inc.
4  * 
5  * This file is part of GNU Radio
6  * 
7  * GNU Radio is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 3, or (at your option)
10  * any later version.
11  * 
12  * GNU Radio is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  * 
17  * You should have received a copy of the GNU General Public License
18  * along with GNU Radio; see the file COPYING.  If not, write to
19  * the Free Software Foundation, Inc., 51 Franklin Street,
20  * Boston, MA 02110-1301, USA.
21  */
22
23 #ifdef HAVE_CONFIG_H
24 #include "config.h"
25 #endif
26
27 #include <gr_pagesize.h>
28 #include <unistd.h>
29 #include <stdio.h>
30
31 #if defined(_WIN32) && defined(HAVE_GETPAGESIZE)
32 extern "C" size_t getpagesize(void);
33 #endif
34
35 int
36 gr_pagesize ()
37 {
38   static int s_pagesize = -1;
39
40   if (s_pagesize == -1){
41 #if defined(HAVE_GETPAGESIZE)
42     s_pagesize = getpagesize ();
43 #elif defined (HAVE_SYSCONF)
44     s_pagesize = sysconf (_SC_PAGESIZE);
45     if (s_pagesize == -1){
46       perror ("_SC_PAGESIZE");
47       s_pagesize = 4096;
48     }
49 #else
50     fprintf (stderr, "gr_pagesize: no info; setting pagesize = 4096\n");
51     s_pagesize = 4096;
52 #endif
53   }
54   return s_pagesize;
55 }
56