Update contrib.
2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
20 #ifndef __RIPC_SESSION__
21 #define __RIPC_SESSION__
23 #include<e32std.h> //RSessionBase
24 #include<e32def.h> //Varargs
35 TChunk(TInt aShmID): iShmID(aShmID), iRef(0){}
42 //-----------------------------------------------------------------------
43 //Class name: RIpcSession
44 //Description: It represents the session to Ipc Server.
45 //-----------------------------------------------------------------------
47 class RIpcSession : public RSessionBase
50 RIpcSession():iIsConnected(EFalse)
51 {iLock.CreateLocal();}
54 int msgctl(int msqid, int cmd, struct msqid_ds *buf, int &aerrno);
55 int msgget(key_t key, int msgflg, int& aerrno);
56 ssize_t msgrcv(int msqid, void *msgp, size_t msgsz, long msgtyp, int msgflg, int& aerrno);
57 int msgsnd(int msqid, const void *msgp, size_t msgsz, int msgflg, int& aerrno);
60 int shmctl(int shmid, int cmd, struct shmid_ds *buf, int &aerrno);
61 int shmget(key_t key, size_t size, int shmflg, int& aerrno);
62 void *shmat(int shmid, const void *shmaddr, int shmflg, int& aerrno);
63 int shmdt(const void *shmaddr, int& aerrno);
66 int semget(key_t key, int nsems, int semflags, int& aerrno);
67 int semctl(int semid, int semnum, int cmd, union semun *arg, int& aerrno);
68 int semop(int semid, struct sembuf *sops, size_t nsops, int& aerrno);
72 TInt AddToList(const TInt& aKey, const TInt& aErr, TAny*& aRetPtr);
73 TInt OnDemandConnection();
86 //todo put a lock around this list
87 RArray<TChunk> iChunkList;
90 #endif //__RIPC_SESSION__