mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-12 09:06:02 +02:00
+ Removed dummy variable from SetCthreadManager
This commit is contained in:
parent
bbb575334b
commit
955d743f21
@ -381,9 +381,6 @@ Var
|
||||
|
||||
Procedure SetCThreadManager;
|
||||
|
||||
Var
|
||||
Dummy : TThreadManager;
|
||||
|
||||
begin
|
||||
With CThreadManager do
|
||||
begin
|
||||
@ -410,7 +407,7 @@ begin
|
||||
ReleaseThreadVars :=@CReleaseThreadVars;
|
||||
{$endif}
|
||||
end;
|
||||
SetThreadManager(CThreadManager,Dummy);
|
||||
SetThreadManager(CThreadManager);
|
||||
InitHeapMutexes;
|
||||
end;
|
||||
|
||||
@ -419,7 +416,10 @@ initialization
|
||||
end.
|
||||
{
|
||||
$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
|
||||
|
||||
Revision 1.2 2003/11/27 20:16:59 michael
|
||||
|
@ -354,9 +354,6 @@ Var
|
||||
|
||||
Procedure SetWinThreadManager;
|
||||
|
||||
Var
|
||||
Dummy : TThreadManager;
|
||||
|
||||
begin
|
||||
With WinThreadManager do
|
||||
begin
|
||||
@ -383,7 +380,7 @@ begin
|
||||
ReleaseThreadVars :=@SysReleaseThreadVars;
|
||||
{$endif HASTHREADVAR}
|
||||
end;
|
||||
SetThreadManager(WinThreadManager,Dummy);
|
||||
SetThreadManager(WinThreadManager);
|
||||
InitHeapMutexes;
|
||||
end;
|
||||
|
||||
@ -393,7 +390,10 @@ end.
|
||||
|
||||
{
|
||||
$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
|
||||
|
||||
Revision 1.7 2003/11/26 20:10:59 michael
|
||||
|
Loading…
Reference in New Issue
Block a user