Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
*.o
*.so
bin
lib
DaoMake.Objs
CacheFindReadLine-linux.dao
FindDao.dao
Makefile
modules/debugger/Makefile
modules/profiler/Makefile
modules/stream/Makefile
tests/Makefile
tools/daomake/Makefile
tools/daomake/bootstrap/daomake
tools/daotest/Makefile
8 changes: 4 additions & 4 deletions kernel/daoProcess.c
Original file line number Diff line number Diff line change
Expand Up @@ -2737,7 +2737,7 @@ int DaoProcess_Start( DaoProcess *self )
if( self->thread->vmstop ) goto FinishProcess;
if( self->thread->vmpause ) DaoProcess_PauseThread( self );
#endif
if( (++count) % 1000 == 0 ) DaoGC_TryInvoke( self );
if( (++count) % 1000 == 0 ) DaoGC_TryInvoke();
if( self->exceptions->size > exceptCount ){
if( self->debugging ) goto AbortProcess;
goto FinishCall;
Expand Down Expand Up @@ -2781,7 +2781,7 @@ int DaoProcess_Start( DaoProcess *self )
self->status = status;
}
DaoProcess_PopFrame( self );
DaoGC_TryInvoke( self );
DaoGC_TryInvoke();
goto CallEntry;

FinishProcess:
Expand Down Expand Up @@ -2818,7 +2818,7 @@ int DaoProcess_Start( DaoProcess *self )
*/
if( active == 0 && self->active ) DaoProcess_MarkActiveTasklet( self, 0 );
#endif
DaoGC_TryInvoke( self );
DaoGC_TryInvoke();
self->startFrame = startFrame;
self->depth -= 1;
return 0;
Expand All @@ -2828,7 +2828,7 @@ int DaoProcess_Start( DaoProcess *self )
#ifdef DAO_WITH_CONCURRENT
if( active == 0 && self->active ) DaoProcess_MarkActiveTasklet( self, 0 );
#endif
DaoGC_TryInvoke( self );
DaoGC_TryInvoke();
self->startFrame = startFrame;
self->depth -= 1;
return 1;
Expand Down
1 change: 1 addition & 0 deletions modules/profiler/dao_profiler.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
#include <string.h>
#include <time.h>
#include <stdlib.h>
#include <ctype.h>

#include "dao_profiler.h"

Expand Down
1 change: 1 addition & 0 deletions tools/daotest/source/daoTest.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
#include<stdlib.h>
#include<string.h>
#include<stdint.h>
#include<ctype.h>
#include<math.h>
#include"dao.h"
#include"daoParser.h"
Expand Down