~ubuntu-branches/ubuntu/feisty/fpc/feisty

« back to all changes in this revision

Viewing changes to rtl/netware/system.pp

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2007-01-27 20:08:50 UTC
  • mfrom: (1.2.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20070127200850-9mrptaqqjsx9nwa7
Tags: 2.0.4-5
* Fixed Build-Depends.
* Add myself to Uploaders in debian/control.
* Make sure that the sources are really patched before building them.
* Build unit 'libc' on powerpc too.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
{
2
 
    $Id: system.pp,v 1.37 2005/04/03 21:10:59 hajny Exp $
3
2
    This file is part of the Free Pascal run time library.
4
3
    Copyright (c) 1999-2000 by the Free Pascal development team.
5
4
 
42
41
 PathSeparator = ';';
43
42
{ FileNameCaseSensitive is defined separately below!!! }
44
43
 maxExitCode = 255;
45
 
 
 
44
 MaxPathLen = 256;
46
45
 
47
46
CONST
48
47
  { Default filehandles }
436
435
end;
437
436
 
438
437
 
 
438
function CheckInitialStkLen(stklen : SizeUInt) : SizeUInt;
 
439
begin
 
440
  result := stklen;
 
441
end;
439
442
{*****************************************************************************
440
443
                         SystemUnit Initialization
441
444
*****************************************************************************}
442
445
 
443
446
Begin
 
447
  StackLength := CheckInitialStkLen(initialstklen);
444
448
  StackBottom := SPtr - StackLength;
445
449
  SigTermHandlerActive := false;
446
450
  NetwareCheckFunction := nil;
480
484
  IsConsole := TRUE;
481
485
  ExitCode  := 0;
482
486
  InitSystemThreads;
483
 
{$ifdef HASVARIANT}
484
487
  initvariantmanager;
485
 
{$endif HASVARIANT}
486
 
{$ifdef HASWIDESTRING}
487
488
  initwidestringmanager;
488
 
{$endif HASWIDESTRING}
489
489
End.
490
 
{
491
 
  $Log: system.pp,v $
492
 
  Revision 1.37  2005/04/03 21:10:59  hajny
493
 
    * EOF_CTRLZ conditional define replaced with CtrlZMarksEOF, #26 handling made more consistent (fix for bug 2453)
494
 
 
495
 
  Revision 1.36  2005/02/14 17:13:30  peter
496
 
    * truncate log
497
 
 
498
 
  Revision 1.35  2005/02/06 16:57:18  peter
499
 
    * threads for go32v2,os,emx,netware
500
 
 
501
 
  Revision 1.34  2005/02/01 20:22:49  florian
502
 
    * improved widestring infrastructure manager
503
 
 
504
 
}