mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-14 13:50:04 +00:00
87 lines
1.6 KiB
C++
87 lines
1.6 KiB
C++
#include "PosixSharedMemory.h"
|
|
#include "Bullet3Common/b3Logging.h"
|
|
#include "LinearMath/btScalar.h" //for btAssert
|
|
|
|
//haven't implemented shared memory on Windows yet, just Linux and Mac
|
|
#ifndef _WIN32
|
|
#define TEST_SHARED_MEMORY
|
|
#endif//_WIN32
|
|
|
|
#include <stddef.h>
|
|
|
|
#ifdef TEST_SHARED_MEMORY
|
|
|
|
#include <sys/shm.h>
|
|
#include <sys/ipc.h>
|
|
|
|
#endif
|
|
|
|
struct PosixSharedMemoryInteralData
|
|
{
|
|
|
|
};
|
|
PosixSharedMemory::PosixSharedMemory()
|
|
{
|
|
|
|
m_internalData = new PosixSharedMemoryInteralData;
|
|
}
|
|
|
|
PosixSharedMemory::~PosixSharedMemory()
|
|
{
|
|
delete m_internalData;
|
|
}
|
|
|
|
struct btPointerCaster
|
|
{
|
|
union
|
|
{
|
|
void* ptr;
|
|
ptrdiff_t integer;
|
|
};
|
|
};
|
|
|
|
void* PosixSharedMemory::allocateSharedMemory(int key, int size)
|
|
{
|
|
#ifdef TEST_SHARED_MEMORY
|
|
int flags = IPC_CREAT | 0666;
|
|
int id = shmget((key_t) key, (size_t) size,flags);
|
|
if (id < 0)
|
|
{
|
|
b3Error("shmget error");
|
|
} else
|
|
{
|
|
btPointerCaster result;
|
|
result.ptr = shmat(id,0,0);
|
|
if (result.integer == -1)
|
|
{
|
|
b3Error("shmat returned -1");
|
|
} else
|
|
{
|
|
return result.ptr;
|
|
}
|
|
}
|
|
#else
|
|
//not implemented yet
|
|
btAssert(0);
|
|
#endif
|
|
return 0;
|
|
}
|
|
void PosixSharedMemory::releaseSharedMemory(int key, int size)
|
|
{
|
|
#ifdef TEST_SHARED_MEMORY
|
|
int flags = 0666;
|
|
int id = shmget((key_t) key, (size_t) size,flags);
|
|
if (id < 0)
|
|
{
|
|
b3Error("PosixSharedMemory::releaseSharedMemory: shmget error");
|
|
} else
|
|
{
|
|
int result = shmctl(id,IPC_RMID,0);
|
|
if (result == -1)
|
|
{
|
|
b3Error("PosixSharedMemory::releaseSharedMemory: shmat returned -1");
|
|
}
|
|
}
|
|
#endif
|
|
}
|