C/C++
ooipc.asc
Associated article: Object-Oriented Interprocess Communication
Tags: C/C++ JVM Languages
_Object-Oriented Interprocess Communication_
by Stephen Blaha
Listing One
/* Header File: sm.h */
template <int shmflags, class T, int key, int size> class Shar_mem
{
private:
int shm_id;
T * ptr;
public:
void get_mem()
{
if((shm_id=shmget(...


