Modify references to old syslinux unit in comments

This commit is contained in:
Pierre Muller 2023-09-19 21:53:26 +00:00
parent 82b37300a8
commit 2d61bef31c
13 changed files with 14 additions and 14 deletions

View File

@ -12,7 +12,7 @@
**********************************************************************} **********************************************************************}
{No debugging for syslinux include !} {No debugging for system include !}
{$IFDEF SYS_LINUX} {$IFDEF SYS_LINUX}
{$UNDEF SYSCALL_DEBUG} {$UNDEF SYSCALL_DEBUG}
{$ENDIF SYS_LINUX} {$ENDIF SYS_LINUX}

View File

@ -507,7 +507,7 @@ asm
.LSyscOK: .LSyscOK:
end; end;
{No debugging for syslinux include !} {No debugging for system include !}
{$IFDEF SYS_LINUX} {$IFDEF SYS_LINUX}
{$UNDEF SYSCALL_DEBUG} {$UNDEF SYSCALL_DEBUG}
{$ENDIF SYS_LINUX} {$ENDIF SYS_LINUX}

View File

@ -11,7 +11,7 @@
**********************************************************************} **********************************************************************}
{No debugging for syslinux include !} {No debugging for system include !}
{$IFDEF SYS_LINUX} {$IFDEF SYS_LINUX}
{$UNDEF SYSCALL_DEBUG} {$UNDEF SYSCALL_DEBUG}
{$ENDIF SYS_LINUX} {$ENDIF SYS_LINUX}

View File

@ -11,7 +11,7 @@
**********************************************************************} **********************************************************************}
{No debugging for syslinux include !} {No debugging for system include !}
{$IFDEF SYS_LINUX} {$IFDEF SYS_LINUX}
{$UNDEF SYSCALL_DEBUG} {$UNDEF SYSCALL_DEBUG}
{$ENDIF SYS_LINUX} {$ENDIF SYS_LINUX}

View File

@ -14,7 +14,7 @@
**********************************************************************} **********************************************************************}
{No debugging for syslinux include !} {No debugging for system include !}
{$IFDEF SYS_LINUX} {$IFDEF SYS_LINUX}
{$UNDEF SYSCALL_DEBUG} {$UNDEF SYSCALL_DEBUG}
{$ENDIF SYS_LINUX} {$ENDIF SYS_LINUX}

View File

@ -14,7 +14,7 @@
**********************************************************************} **********************************************************************}
{No debugging for syslinux include !} {No debugging for system include !}
{$IFDEF SYS_LINUX} {$IFDEF SYS_LINUX}
{$UNDEF SYSCALL_DEBUG} {$UNDEF SYSCALL_DEBUG}
{$ENDIF SYS_LINUX} {$ENDIF SYS_LINUX}

View File

@ -12,7 +12,7 @@
**********************************************************************} **********************************************************************}
{No debugging for syslinux include !} {No debugging for system include !}
{$IFDEF SYS_LINUX} {$IFDEF SYS_LINUX}
{$UNDEF SYSCALL_DEBUG} {$UNDEF SYSCALL_DEBUG}
{$ENDIF SYS_LINUX} {$ENDIF SYS_LINUX}

View File

@ -12,7 +12,7 @@
**********************************************************************} **********************************************************************}
{No debugging for syslinux include !} {No debugging for system include !}
{$IFDEF SYS_LINUX} {$IFDEF SYS_LINUX}
{$UNDEF SYSCALL_DEBUG} {$UNDEF SYSCALL_DEBUG}
{$ENDIF SYS_LINUX} {$ENDIF SYS_LINUX}

View File

@ -230,7 +230,7 @@ asm
end; end;
{No debugging for syslinux include !} {No debugging for system include !}
{$IFDEF SYS_LINUX} {$IFDEF SYS_LINUX}
{$UNDEF SYSCALL_DEBUG} {$UNDEF SYSCALL_DEBUG}
{$ENDIF SYS_LINUX} {$ENDIF SYS_LINUX}

View File

@ -12,7 +12,7 @@
**********************************************************************} **********************************************************************}
{No debugging for syslinux include !} {No debugging for system include !}
{$IFDEF SYS_LINUX} {$IFDEF SYS_LINUX}
{$UNDEF SYSCALL_DEBUG} {$UNDEF SYSCALL_DEBUG}
{$ENDIF SYS_LINUX} {$ENDIF SYS_LINUX}

View File

@ -188,7 +188,7 @@ begin
InOutRes := 0; InOutRes := 0;
end; end;
// mostly stolen from syslinux // mostly stolen from linux system unit
procedure do_open(var f;p:PAnsiChar;flags:longint; pchangeable: boolean); procedure do_open(var f;p:PAnsiChar;flags:longint; pchangeable: boolean);
{ {
filerec and textrec have both handle and mode as the first items so filerec and textrec have both handle and mode as the first items so

View File

@ -220,7 +220,7 @@ begin
end; end;
{$ifdef IOpossix} {$ifdef IOpossix}
// mostly stolen from syslinux // mostly stolen from linux system unit
procedure do_open(var f;p:PAnsiChar;flags:longint; pchangeable: boolean); procedure do_open(var f;p:PAnsiChar;flags:longint; pchangeable: boolean);
{ {
filerec and textrec have both handle and mode as the first items so filerec and textrec have both handle and mode as the first items so

View File

@ -822,7 +822,7 @@ var
p : PPAnsiChar; p : PPAnsiChar;
Begin Begin
envcnt:=0; envcnt:=0;
p:=envp; {defined in syslinux} p:=envp; {defined in system unit}
while (p^<>nil) do while (p^<>nil) do
begin begin
inc(envcnt); inc(envcnt);
@ -841,7 +841,7 @@ Begin
envstr:='' envstr:=''
else else
begin begin
p:=envp; {defined in syslinux} p:=envp; {defined in system unit}
i:=1; i:=1;
while (i<Index) and (p^<>nil) do while (i<Index) and (p^<>nil) do
begin begin