*** empty log message ***

This commit is contained in:
glenux 2004-02-22 22:11:59 +00:00 committed by Glenn Y. Rolland
parent bb20a917b4
commit 0b53517f10
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
* le numéro du pool est stocké dans idxPoolOptimum */
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)
&& (semPoolCoef[i] < minPoolCoef)) {
minPoolCoef = semPoolCoef[i];

View file

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