*** empty log message ***

This commit is contained in:
glenux 2004-02-22 22:11:59 +00:00
parent 7dc3d9602e
commit 246566e77c
2 changed files with 8 additions and 6 deletions

View file

@ -116,7 +116,7 @@ void * msgAllocate(msgSpace *space,
/* on cherche le pool avec le moins de lock poses / nbre de buffer /* on cherche le pool avec le moins de lock poses / nbre de buffer
* le numéro du pool est stocké dans idxPoolOptimum */ * le numéro du pool est stocké dans idxPoolOptimum */
for(i=0; i<nbLockedSem; i++) { for(i=0; i<nbLockedSem; i++) {
printf("Coef %d : %d\n",i,semPoolCoef[i]); printf("Coef %d : %d\n",i,(int)semPoolCoef[i]);
if ((semPoolCoef[i] != -1) if ((semPoolCoef[i] != -1)
&& (semPoolCoef[i] < minPoolCoef)) { && (semPoolCoef[i] < minPoolCoef)) {
minPoolCoef = semPoolCoef[i]; minPoolCoef = semPoolCoef[i];

View file

@ -54,15 +54,17 @@ typedef struct MsgSpace {
} msgSpace; } msgSpace;
/* struct msgSpaceListElem * next; */
typedef struct MsgSpaceListElem { typedef struct MsgSpaceListElem {
// void * id; // void * id;
int ownerPid; int ownerPid;
msgSpaceListId idList; msgSpaceListElemId next;
msgSpaceListElemId idListElem; } msgSpaceListElem;
} * msgSpaceList, msgSpaceListElem;
typedef struct MsgSpaceList {
int elemCounter;
msgSpaceListElemId first;
msgSpaceListElemId last;
} msgSpaceList,
#endif #endif
/* */ /* */