*** empty log message ***
This commit is contained in:
parent
783d125b71
commit
7a4c85a7dc
|
@ -24,6 +24,9 @@
|
||||||
History
|
History
|
||||||
|
|
||||||
$Log: not supported by cvs2svn $
|
$Log: not supported by cvs2svn $
|
||||||
|
Revision 1.8 2004/12/03 21:19:00 ponchio
|
||||||
|
Fixed a couple of memory leak...
|
||||||
|
|
||||||
Revision 1.7 2004/12/03 01:20:56 ponchio
|
Revision 1.7 2004/12/03 01:20:56 ponchio
|
||||||
Debug
|
Debug
|
||||||
|
|
||||||
|
@ -56,7 +59,7 @@ Level 0.
|
||||||
#else
|
#else
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#endif
|
#endif
|
||||||
|
#include <hash_map>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
|
||||||
#include "nxstypes.h"
|
#include "nxstypes.h"
|
||||||
|
@ -405,7 +408,7 @@ void FourthStep(const string &crudefile, const string &output,
|
||||||
|
|
||||||
vector<Link> links;
|
vector<Link> links;
|
||||||
|
|
||||||
map<unsigned int, unsigned short> vremap;
|
hash_map<unsigned int, unsigned short> vremap;
|
||||||
for(unsigned int i = 0; i < vert_index[start].size; i++) {
|
for(unsigned int i = 0; i < vert_index[start].size; i++) {
|
||||||
unsigned int global = vert_remap[vert_index[start].offset + i];
|
unsigned int global = vert_remap[vert_index[start].offset + i];
|
||||||
vremap[global] = i;
|
vremap[global] = i;
|
||||||
|
|
|
@ -56,7 +56,7 @@ void FragIO::execute() {
|
||||||
server->writing.unlock();
|
server->writing.unlock();
|
||||||
message *msg = new message(MSG_FAIL, (int)fragin);
|
message *msg = new message(MSG_FAIL, (int)fragin);
|
||||||
dispatcher->post(msg);
|
dispatcher->post(msg);
|
||||||
//TODO restart Server!
|
server->opener.start();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -71,6 +71,7 @@ void FragIO::execute() {
|
||||||
server->reading.unlock();
|
server->reading.unlock();
|
||||||
message *msg = new message(MSG_FAIL, (int)fragin);
|
message *msg = new message(MSG_FAIL, (int)fragin);
|
||||||
dispatcher->post(msg);
|
dispatcher->post(msg);
|
||||||
|
server->opener.start();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
server->reading.unlock();
|
server->reading.unlock();
|
||||||
|
|
Loading…
Reference in New Issue