+ Removed dummy variable from SetCthreadManager

This commit is contained in:
michael 2003-11-29 17:34:14 +00:00
parent bbb575334b
commit 955d743f21
2 changed files with 10 additions and 10 deletions

View File

@ -381,9 +381,6 @@ Var
Procedure SetCThreadManager; Procedure SetCThreadManager;
Var
Dummy : TThreadManager;
begin begin
With CThreadManager do With CThreadManager do
begin begin
@ -410,7 +407,7 @@ begin
ReleaseThreadVars :=@CReleaseThreadVars; ReleaseThreadVars :=@CReleaseThreadVars;
{$endif} {$endif}
end; end;
SetThreadManager(CThreadManager,Dummy); SetThreadManager(CThreadManager);
InitHeapMutexes; InitHeapMutexes;
end; end;
@ -419,7 +416,10 @@ initialization
end. end.
{ {
$Log$ $Log$
Revision 1.3 2003-11-27 20:24:53 michael Revision 1.4 2003-11-29 17:34:14 michael
+ Removed dummy variable from SetCthreadManager
Revision 1.3 2003/11/27 20:24:53 michael
+ Compiles on BSD too now + Compiles on BSD too now
Revision 1.2 2003/11/27 20:16:59 michael Revision 1.2 2003/11/27 20:16:59 michael

View File

@ -354,9 +354,6 @@ Var
Procedure SetWinThreadManager; Procedure SetWinThreadManager;
Var
Dummy : TThreadManager;
begin begin
With WinThreadManager do With WinThreadManager do
begin begin
@ -383,7 +380,7 @@ begin
ReleaseThreadVars :=@SysReleaseThreadVars; ReleaseThreadVars :=@SysReleaseThreadVars;
{$endif HASTHREADVAR} {$endif HASTHREADVAR}
end; end;
SetThreadManager(WinThreadManager,Dummy); SetThreadManager(WinThreadManager);
InitHeapMutexes; InitHeapMutexes;
end; end;
@ -393,7 +390,10 @@ end.
{ {
$Log$ $Log$
Revision 1.8 2003-11-27 10:28:41 michael Revision 1.9 2003-11-29 17:34:53 michael
+ Removed dummy variable from SetCthreadManager
Revision 1.8 2003/11/27 10:28:41 michael
+ Patch from peter to fix make cycle + Patch from peter to fix make cycle
Revision 1.7 2003/11/26 20:10:59 michael Revision 1.7 2003/11/26 20:10:59 michael