2005-01-20 23:22:22 +00:00
|
|
|
// Berkeley Open Infrastructure for Network Computing
|
|
|
|
// http://boinc.berkeley.edu
|
|
|
|
// Copyright (C) 2005 University of California
|
2003-06-11 23:36:48 +00:00
|
|
|
//
|
2005-01-20 23:22:22 +00:00
|
|
|
// This is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
|
|
// License as published by the Free Software Foundation;
|
|
|
|
// either version 2.1 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This software 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 Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// To view the GNU Lesser General Public License visit
|
|
|
|
// http://www.gnu.org/copyleft/lesser.html
|
|
|
|
// or write to the Free Software Foundation, Inc.,
|
2007-10-09 11:35:47 +00:00
|
|
|
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2003-06-11 23:36:48 +00:00
|
|
|
|
2002-05-24 04:29:10 +00:00
|
|
|
// platform-independent interface to shared memory
|
|
|
|
|
2003-05-05 23:40:34 +00:00
|
|
|
#ifndef BOINC_SHMEM_H
|
|
|
|
#define BOINC_SHMEM_H
|
|
|
|
|
2004-03-04 11:41:43 +00:00
|
|
|
#ifndef _WIN32
|
2007-05-23 22:36:07 +00:00
|
|
|
#include <sys/types.h>
|
2002-05-24 04:29:10 +00:00
|
|
|
#include <sys/shm.h>
|
2003-03-18 19:37:09 +00:00
|
|
|
#endif
|
|
|
|
|
2007-09-27 03:34:27 +00:00
|
|
|
// create_shmem(): create a shared-memory segment of the given size.
|
|
|
|
// attach_shmem(): attach to a shared-memory segment
|
|
|
|
// detach_shmem(): detach from a shared-mem segment.
|
|
|
|
// Once all processes have detached, the segment is destroyed
|
|
|
|
// The above with _mmap: V6 mmap() shared memory for Unix/Linux/Mac
|
2003-03-18 19:37:09 +00:00
|
|
|
|
2007-09-27 03:34:27 +00:00
|
|
|
#ifdef _WIN32
|
2004-09-01 04:59:32 +00:00
|
|
|
HANDLE create_shmem(LPCTSTR seg_name, int size, void** pp, bool disable_mapview);
|
2003-03-18 19:37:09 +00:00
|
|
|
HANDLE attach_shmem(LPCTSTR seg_name, void** pp);
|
|
|
|
int detach_shmem(HANDLE hSharedMem, void* p);
|
|
|
|
#else
|
2007-09-26 10:16:42 +00:00
|
|
|
#ifndef __EMX__
|
2007-08-27 09:17:38 +00:00
|
|
|
#define MMAPPED_FILE_NAME "boinc_mmap_file"
|
2007-09-26 10:16:42 +00:00
|
|
|
extern int create_shmem_mmap(char *path, size_t size, void** pp);
|
2007-09-27 03:34:27 +00:00
|
|
|
extern int attach_shmem_mmap(char *path, void** pp);
|
2007-09-26 10:16:42 +00:00
|
|
|
extern int detach_shmem_mmap(void* p, size_t size);
|
|
|
|
// For testing on Apple, Linux, UNIX systems with limited number
|
|
|
|
// of shared memory segments per process and / or system-wide
|
2007-09-27 03:34:27 +00:00
|
|
|
extern void stress_shmem(short reduce_by);
|
2007-09-26 10:16:42 +00:00
|
|
|
#endif
|
2007-08-27 09:17:38 +00:00
|
|
|
extern int create_shmem(key_t, int size, gid_t gid, void**);
|
2002-05-24 04:29:10 +00:00
|
|
|
extern int attach_shmem(key_t, void**);
|
2002-06-01 20:26:21 +00:00
|
|
|
extern int detach_shmem(void*);
|
2003-03-17 19:24:38 +00:00
|
|
|
extern int shmem_info(key_t key);
|
2007-08-27 09:17:38 +00:00
|
|
|
// Destroy a shared-memory segment.
|
|
|
|
// If there are attachments to it,
|
|
|
|
// print a message in a loop until the attachments are gone
|
|
|
|
//
|
|
|
|
extern int destroy_shmem(key_t);
|
2007-09-27 03:34:27 +00:00
|
|
|
#endif // !defined(_WIN32)
|
2007-08-27 09:17:38 +00:00
|
|
|
|
|
|
|
#endif // BOINC_SHMEM_H
|