2008-08-06 18:36:30 +00:00
|
|
|
// This file is part of BOINC.
|
2005-01-20 23:22:22 +00:00
|
|
|
// http://boinc.berkeley.edu
|
2008-08-06 18:36:30 +00:00
|
|
|
// Copyright (C) 2008 University of California
|
2003-06-11 23:36:48 +00:00
|
|
|
//
|
2008-08-06 18:36:30 +00:00
|
|
|
// BOINC 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 3 of the License, or (at your option) any later version.
|
2005-01-20 23:22:22 +00:00
|
|
|
//
|
2008-08-06 18:36:30 +00:00
|
|
|
// BOINC is distributed in the hope that it will be useful,
|
2005-01-20 23:22:22 +00:00
|
|
|
// 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.
|
|
|
|
//
|
2008-08-06 18:36:30 +00:00
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with BOINC. If not, see <http://www.gnu.org/licenses/>.
|
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>
|
2012-08-04 00:27:32 +00:00
|
|
|
#ifndef ANDROID
|
2009-07-14 17:50:33 +00:00
|
|
|
#include <sys/shm.h>
|
|
|
|
#endif
|
2012-08-04 00:27:32 +00:00
|
|
|
#endif
|
2003-03-18 19:37:09 +00:00
|
|
|
|
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
|
2008-06-20 21:33:02 +00:00
|
|
|
HANDLE create_shmem(
|
|
|
|
LPCTSTR seg_name, int size, void** pp, bool try_global=true
|
|
|
|
);
|
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"
|
- server code: at some point I made a global var "SCHED_CONFIG config",
mostly so that the parse function could assume
that everything was initially zero.
However, various back-end functions pass around SCHED_CONFIG&
as an argument (also named "config").
This creates a shadow, which is always bad.
Worse is the possibility that some projects have back-end programs
that have a SCHED_CONFIG variable that's automatic,
and therefore isn't zero initially,
and therefore isn't parsing correctly.
To fix this, I changed the 2 vectors in SCHED_CONFIG into pointers,
and have the parse routine zero the structure.
I was tempted to remove the SCHED_CONFIG& args to back-end functions,
but this would have broken some projects' code.
I did, however, change the name from config to config_loc
to avoid shadowing.
Also fixed various other compiler warnings.
svn path=/trunk/boinc/; revision=15541
2008-07-02 17:24:53 +00:00
|
|
|
extern int create_shmem_mmap(const char *path, size_t size, void** pp);
|
|
|
|
extern int attach_shmem_mmap(const char *path, void** pp);
|
2007-09-26 10:16:42 +00:00
|
|
|
extern int detach_shmem_mmap(void* p, size_t size);
|
|
|
|
#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
|