Subversion Repositories Kolibri OS

Rev

Hide changed files | Directory listing | RSS feed

Filtering Options

Rev Age Author Path Log message Diff Changes
9988 43 d 4 h ace_dent / Optimize logo.png

Lossless optimization of png files:
- 2x `logo.png` slimmed 2623 bytes, ~5% saving.
 
/contrib/C_Layer/EXAMPLE/img_example/logo.png
/programs/develop/ktcc/trunk/libc.obj/samples/clayer/logo.png
9986 43 d 23 h hidnplayr /programs/develop/libraries/libcrash/mac/ Poly1305: Fix forgotten variable init  
/programs/develop/libraries/libcrash/mac/poly1305.asm
9973 72 d 0 h rgimad /programs/develop/ktcc/trunk/libc.obj/include/ libc.obj: added _ksys_blitter (sysfn73), add forgotten static in libimg.h  
/programs/develop/ktcc/trunk/libc.obj/include/clayer/libimg.h
/programs/develop/ktcc/trunk/libc.obj/include/sys/ksys.h
9952 105 d 21 h turbocat / NewLib:
- Duplicate functionality files removed;
- Refactoring of file handling functions;
- Removed broken impliments.
Gears (C + TinyGL):
- Removed because it duplicates an existing example on Fasm and uses unsupported wrappers on the KOS API.
KosJS:
- Removed. The MuJS port is too old and not used anywhere. Support is not profitable.
Backy:
- Removed useless GCC version. Support is not profitable.
DGen-SDL and SQLite3
- Fix after removing broken "dirent.h".
Fridge:
- Moving the KOS API wrapper to avoid compilation errors.
Udis86, uARM and 8086tiny:
- Fix after removing redundant "kos_LoadConsole.h".
 
/contrib/sdk/sources/newlib/libc/sys/chdir.c
/contrib/sdk/sources/newlib/libc/sys/getcwd.c
/programs/games/fridge/kos.h
/contrib/sdk/sources/newlib/libc/Makefile.ebox
/contrib/sdk/sources/newlib/libc/dirent
/contrib/sdk/sources/newlib/libc/include/dirent.h
/contrib/sdk/sources/newlib/libc/include/kos32sys.h
/contrib/sdk/sources/newlib/libc/include/sys/dir.h
/contrib/sdk/sources/newlib/libc/include/sys/dirent.h
/contrib/sdk/sources/newlib/libc/include/sys/kos.h
/contrib/sdk/sources/newlib/libc/include/sys/kos_LoadConsole.h
/contrib/sdk/sources/newlib/libc/include/sys/kos_io.h
/contrib/sdk/sources/newlib/libc/include/sys/socket.h
/contrib/sdk/sources/newlib/libc/libc.def
/contrib/sdk/sources/newlib/libc/libc.orig.def
/contrib/sdk/sources/newlib/libc/sys/create.c
/contrib/sdk/sources/newlib/libc/sys/finfo.c
/contrib/sdk/sources/newlib/libc/sys/fsize.c
/programs/demos/gears
/programs/develop/backy/gcc_version
/programs/develop/kosjs
/contrib/other/8086tiny/8086tiny.c
/contrib/other/uarm/main_pc.c
/contrib/other/udcli/udcli.c
/contrib/sdk/sources/newlib/libc/Makefile
/contrib/sdk/sources/newlib/libc/Tupfile.lua
/contrib/sdk/sources/newlib/libc/crt/console.asm
/contrib/sdk/sources/newlib/libc/crt/crtdll.c
/contrib/sdk/sources/newlib/libc/include/sys/ksys.h
/contrib/sdk/sources/newlib/libc/include/sys/stat.h
/contrib/sdk/sources/newlib/libc/sdk/fasm/include/libc.inc
/contrib/sdk/sources/newlib/libc/sys/close.c
/contrib/sdk/sources/newlib/libc/sys/conio.c
/contrib/sdk/sources/newlib/libc/sys/fstat.c
/contrib/sdk/sources/newlib/libc/sys/ioread.c
/contrib/sdk/sources/newlib/libc/sys/iowrite.c
/contrib/sdk/sources/newlib/libc/sys/lseek.c
/contrib/sdk/sources/newlib/libc/sys/open.c
/contrib/sdk/sources/newlib/libc/sys/read.c
/contrib/sdk/sources/newlib/libc/sys/stat.c
/contrib/sdk/sources/newlib/libc/sys/write.c
/contrib/sdk/sources/sqlite3/Makefile
/contrib/sdk/sources/sqlite3/shell/Tupfile.lua
/contrib/sdk/sources/sqlite3/shell/shell.c
/programs/develop/libraries/newlib_example/main.c
/programs/emulator/dgen-sdl-1.33/system.c
/programs/games/fridge/fridge.c
9946 201 d 6 h akron1 /programs/develop/cedit/ CEdit:
- added line spacing setting
- disabled highlighting of anonymous labels
 
/programs/develop/cedit/CEDIT
/programs/develop/cedit/CEDIT.INI
/programs/develop/cedit/SRC/CEdit.ob07
/programs/develop/cedit/SRC/Ini.ob07
/programs/develop/cedit/SRC/Text.ob07
9927 257 d 4 h boppan /programs/develop/clink/ [clink] Make it able to read and write more than 64k - 1 COFF relocation

These are changes from two commits from the upstream clink repo (https://github.com/mkostoevr/clink) and one commit from the upstream epep repo (https://github.com/mkostoevr/epep).

clink:

Commit e63ed12ead17e47d77e848da0e7b9f4dd3ad5127
Bugfix: Make it able to write more than 64k - 1 COFF relocations

If the relocation count is greater than 0xffff then it can't fit
in the NumberOfRelocations field of a section header. In order to
specify greater relocation count IMAGE_SCN_LNK_NRELOC_OVFL flag
should be added to Characteristics and the actual relocation count
should be written into VirtualAddress field of the first COFF
relocation.

Commit 328fc3112a30fcaa808f2cad34028a6507d602a3
Bugfix: Make it able to read more than 64k - 1 COFF relocations

New EPEP API allows to read more than 64k - 1 relocations. Use it
when reading relocation count for filling SectionInfo and when
reading relocations for wriring the output file.

epep:

Commit 3bed4e348a486c346d0a452c58c1d85e1805c09d
Feature: Higher-level COFF relocations API

Number of COFF relocations of a section is stored in the 16-bit
NumberOfRelocations field of a section header. If a COFF object has
more than 2^16 - 1 relocations, then the value does not fit in the
field.

To solve this problem, IMAGE_SCN_LNK_NRELOC_OVFL flag of a section
header has been introduced. If this flag is set for the section,
then the actual number of relocations is stored in the
VirtualAddress field of the first relocation.

If the flag is set, then NumberOfRelocations field of the section
header should be equal to 0xffff, othervice the linker should give
an error.

So this patch introduces few functions adressing this mechanism.

epep_section_contains_extended_relocations:

Checks whether the section has more than 2^16 - 1 relocations.
Retrns error if the IMAGE_SCN_LNK_NRELOC_OVFL flag is set, but
the NumberOfRelocations field is not equal to 0xffff.

epep_get_section_extended_number_of_relocations:

Reads the number of COFF relocations from the VirtualAddress
field of the first COFF relocation.

epep_get_section_number_of_relocations_x:

Gives the number of meaningful relocations of the section.

If the section has less than 2^16 relocations, then returns the
value of the NumberOfRelocations field of the section header,
othervice reads the number of relocations from the first COFF
relocation, but: since the first relocation in this case is not
meaningful, gives the actual number of relocations minus one.
This is used in the function documented below.

Returns 1 in the last argument if the section contains extended
number of relocations, 0 othervice.

epep_get_section_relocation_by_index_x:

If the section has less than 2^16 relocations, then just reads
a relocation by the given index. In case if the section has
extended number of relocations, the first relocation is not
meaningful, so it is skipped, and the relocation at index + 1
is read instead.
 
/programs/develop/clink/epep/epep.h
/programs/develop/clink/main.c
9915 348 d 2 h akron1 /programs/develop/cedit/ CEdit: added [shift+mouse wheel] for horizontal scrolling;
search improved.
 
/programs/develop/cedit/CEDIT
/programs/develop/cedit/SHORTCUT.TXT
/programs/develop/cedit/SRC/CEdit.ob07
/programs/develop/cedit/SRC/StatusBar.ob07
/programs/develop/cedit/SRC/Text.ob07
9913 372 d 0 h akron1 /programs/develop/cedit/ CEdit: bugfix  
/programs/develop/cedit/CEDIT
/programs/develop/cedit/SRC/CEdit.ob07
/programs/develop/cedit/SRC/EditBox.ob07
/programs/develop/cedit/SRC/Icons.ob07
/programs/develop/cedit/SRC/Ini.ob07
/programs/develop/cedit/SRC/OpenDlg.ob07
/programs/develop/cedit/SRC/Text.ob07
9909 387 d 20 h akron1 /programs/develop/cedit/ CEdit:
- highlight @@:/@f/@b/@r
- numpad support
 
/programs/develop/cedit/CEDIT
/programs/develop/cedit/SRC/CEdit.ob07
/programs/develop/cedit/SRC/Lines.ob07
/programs/develop/cedit/SRC/Search.ob07
/programs/develop/cedit/SRC/Text.ob07
/programs/develop/cedit/SRC/Utils.ob07
9908 388 d 2 h Doczom /programs/ Updated dll.load. Added support for loading the library using the full path.
Fixed makefile for Whether
 
/programs/develop/libraries/dll/dll.inc
/programs/dll.inc
/programs/other/Weather/Makefile
9907 398 d 6 h akron1 /programs/develop/cedit/ CEdit: fixed whole word search  
/programs/develop/cedit/CEDIT
/programs/develop/cedit/CEDIT.INI
/programs/develop/cedit/SRC/CEdit.ob07
/programs/develop/cedit/SRC/Search.ob07
/programs/develop/cedit/SRC/Text.ob07
/programs/develop/cedit/SRC/Utils.ob07
9906 410 d 21 h akron1 /programs/develop/cedit/ CEdit: minor fix  
/programs/develop/cedit/CEDIT
/programs/develop/cedit/SRC/CEdit.ob07
/programs/develop/cedit/SRC/Encodings.ob07
/programs/develop/cedit/SRC/Graph.ob07
/programs/develop/cedit/SRC/KolibriOS.ob07
/programs/develop/cedit/SRC/Lines.ob07
/programs/develop/cedit/SRC/Text.ob07
/programs/develop/cedit/SRC/Toolbar.ob07
/programs/develop/cedit/SRC/Utils.ob07
/programs/develop/cedit/SRC/scroll.ob07
9904 417 d 23 h akron1 /programs/develop/cedit/ CEdit: optimization  
/programs/develop/cedit/CEDIT
/programs/develop/cedit/SRC/CEdit.ob07
/programs/develop/cedit/SRC/ChangeLog.ob07
/programs/develop/cedit/SRC/Ini.ob07
/programs/develop/cedit/SRC/Lines.ob07
/programs/develop/cedit/SRC/Text.ob07
9903 420 d 4 h akron1 /programs/develop/cedit/ CEdit: reduced memory usage, small improvements  
/programs/develop/cedit/SRC/API.ob07
/programs/develop/cedit/SRC/RTL.ob07
/programs/develop/cedit/CEDIT
/programs/develop/cedit/SRC/CEdit.ob07
/programs/develop/cedit/SRC/ChangeLog.ob07
/programs/develop/cedit/SRC/Languages.ob07
/programs/develop/cedit/SRC/Search.ob07
/programs/develop/cedit/SRC/Tabs.ob07
/programs/develop/cedit/SRC/Text.ob07
/programs/develop/cedit/SRC/Utils.ob07
9902 422 d 3 h akron1 /programs/develop/cedit/ CEdit: reduced memory usage  
/programs/develop/cedit/CEDIT
/programs/develop/cedit/CEDIT.INI
/programs/develop/cedit/SRC/CEdit.ob07
/programs/develop/cedit/SRC/ChangeLog.ob07
/programs/develop/cedit/SRC/Encodings.ob07
/programs/develop/cedit/SRC/Graph.ob07
/programs/develop/cedit/SRC/Icons.ob07
/programs/develop/cedit/SRC/Languages.ob07
/programs/develop/cedit/SRC/Menu.ob07
/programs/develop/cedit/SRC/RW.ob07
/programs/develop/cedit/SRC/Search.ob07
/programs/develop/cedit/SRC/Text.ob07
/programs/develop/cedit/SRC/Toolbar.ob07
9896 453 d 5 h akron1 / FB2 Reader: upload source, small changes  
/programs/other/fb2reader
/programs/other/fb2reader/BUILD.SH
/programs/other/fb2reader/FB2READ.INI
/programs/other/fb2reader/RUN.SH
/programs/other/fb2reader/SRC
/programs/other/fb2reader/SRC/API.ob07
/programs/other/fb2reader/SRC/ColorDlg.ob07
/programs/other/fb2reader/SRC/Conv.ob07
/programs/other/fb2reader/SRC/Cursor.ob07
/programs/other/fb2reader/SRC/DOM.ob07
/programs/other/fb2reader/SRC/FB2READ.ob07
/programs/other/fb2reader/SRC/File.ob07
/programs/other/fb2reader/SRC/Font.ob07
/programs/other/fb2reader/SRC/Graph.ob07
/programs/other/fb2reader/SRC/Icons.ob07
/programs/other/fb2reader/SRC/Ini.ob07
/programs/other/fb2reader/SRC/KOSAPI.ob07
/programs/other/fb2reader/SRC/LISTS.ob07
/programs/other/fb2reader/SRC/Libimg.ob07
/programs/other/fb2reader/SRC/OpenDlg.ob07
/programs/other/fb2reader/SRC/RTL.ob07
/programs/other/fb2reader/SRC/Read.ob07
/programs/other/fb2reader/SRC/ReadFile.ob07
/programs/other/fb2reader/SRC/Search.ob07
/programs/other/fb2reader/SRC/SearchForm.ob07
/programs/other/fb2reader/SRC/SelEnc.ob07
/programs/other/fb2reader/SRC/Settings.ob07
/programs/other/fb2reader/SRC/Strings.ob07
/programs/other/fb2reader/SRC/SysUtils.ob07
/programs/other/fb2reader/SRC/Toolbar.ob07
/programs/other/fb2reader/SRC/Txt2fb2.ob07
/programs/other/fb2reader/SRC/Vector.ob07
/programs/other/fb2reader/SRC/Window.ob07
/programs/other/fb2reader/SRC/Write.ob07
/programs/other/fb2reader/SRC/XML.ob07
/programs/other/fb2reader/SRC/box_lib.ob07
/programs/other/fb2reader/SRC/encode.ob07
/programs/other/fb2reader/SRC/kfonts.ob07
/programs/other/fb2reader/SRC/tables.ob07
/data/common/fb2read
/programs/develop/cedit/BUILD.SH
/programs/develop/cedit/RUN.SH
9895 453 d 7 h akron1 /programs/develop/oberon07/ oberon07: bugfix  
/programs/develop/oberon07/Compiler.kex
/programs/develop/oberon07/source/STATEMENTS.ob07
/programs/develop/oberon07/source/UTILS.ob07
9893 454 d 4 h akron1 /programs/develop/ oberon07: lower case by default  
/programs/develop/oberon07/doc/WinLib.txt
/programs/develop/oberon07/doc/x86_64.txt
/programs/develop/cedit/SRC/Icons.ob07
/programs/develop/oberon07/Compiler.kex
/programs/develop/oberon07/LICENSE
/programs/develop/oberon07/doc/CC.txt
/programs/develop/oberon07/doc/x86.txt
/programs/develop/oberon07/lib/KolibriOS/Math.ob07
/programs/develop/oberon07/lib/Math/CMath.ob07
/programs/develop/oberon07/lib/Math/MathBits.ob07
/programs/develop/oberon07/lib/Math/MathRound.ob07
/programs/develop/oberon07/lib/Math/MathStat.ob07
/programs/develop/oberon07/lib/Math/Rand.ob07
/programs/develop/oberon07/lib/Math/RandExt.ob07
/programs/develop/oberon07/source/AMD64.ob07
/programs/develop/oberon07/source/ARITH.ob07
/programs/develop/oberon07/source/Compiler.ob07
/programs/develop/oberon07/source/FILES.ob07
/programs/develop/oberon07/source/IL.ob07
/programs/develop/oberon07/source/MSP430.ob07
/programs/develop/oberon07/source/PROG.ob07
/programs/develop/oberon07/source/RVMxI.ob07
/programs/develop/oberon07/source/STATEMENTS.ob07
/programs/develop/oberon07/source/TARGETS.ob07
/programs/develop/oberon07/source/THUMB.ob07
/programs/develop/oberon07/source/UTILS.ob07
/programs/develop/oberon07/source/X86.ob07
9892 454 d 7 h akron1 /programs/develop/cedit/ CEdit: clipping text, small changes  
/programs/develop/cedit/BUILD.SH
/programs/develop/cedit/CEDIT
/programs/develop/cedit/RUN.SH
/programs/develop/cedit/SRC/CEdit.ob07
/programs/develop/cedit/SRC/Graph.ob07
/programs/develop/cedit/SRC/Languages.ob07
/programs/develop/cedit/SRC/Text.ob07
9891 462 d 9 h akron1 /programs/develop/cedit/ CEdit: minor fixes  
/programs/develop/cedit/CEDIT
/programs/develop/cedit/SRC/CEdit.ob07
/programs/develop/cedit/SRC/Graph.ob07
/programs/develop/cedit/SRC/Text.ob07
9873 596 d 22 h akron1 /programs/develop/oberon07/ oberon07:
- faster loading of real constants into registers
- deleting unnecessary files
 
/programs/develop/oberon07/Compiler
/programs/develop/oberon07/Compiler.exe
/programs/develop/oberon07/README.md
/programs/develop/oberon07/SelfKolibriOS.cmd
/programs/develop/oberon07/lib/RVM32I
/programs/develop/oberon07/lib/RVMxI
/programs/develop/oberon07/Compiler.kex
/programs/develop/oberon07/LICENSE
/programs/develop/oberon07/lib/KolibriOS/HOST.ob07
/programs/develop/oberon07/source/UTILS.ob07
/programs/develop/oberon07/source/X86.ob07
9868 626 d 5 h turbocat /programs/develop/ktcc/trunk/libc.obj/ libc.obj:
- now using vsscanf from BaseLibc;
- delete extra pragma
- disable sort includes(clang-format)
 
/programs/develop/ktcc/trunk/libc.obj/source/stdio/strntoumax.c
/programs/develop/ktcc/trunk/libc.obj/source/stdio/vsscanf.c
/programs/develop/ktcc/trunk/libc.obj/source/stdio/format_scan.c
/programs/develop/ktcc/trunk/libc.obj/source/stdio/format_scan.h
/programs/develop/ktcc/trunk/libc.obj/.clang-format
/programs/develop/ktcc/trunk/libc.obj/source/libc.c
/programs/develop/ktcc/trunk/libc.obj/source/stdio/format_print.h
/programs/develop/ktcc/trunk/libc.obj/source/stdio/fscanf.c
/programs/develop/ktcc/trunk/libc.obj/source/stdio/scanf.c
/programs/develop/ktcc/trunk/libc.obj/source/stdio/sprintf.c
/programs/develop/ktcc/trunk/libc.obj/source/stdio/sscanf.c
/programs/develop/ktcc/trunk/libc.obj/source/stdio/vprintf.c
/programs/develop/ktcc/trunk/libc.obj/source/stdio/vsnprintf.c
9867 626 d 13 h turbocat /programs/develop/ktcc/trunk/libc.obj/samples/ libc.obj : added a very simple example of working with futexes  
/programs/develop/ktcc/trunk/libc.obj/samples/futex.c
/programs/develop/ktcc/trunk/libc.obj/samples/Makefile
/programs/develop/ktcc/trunk/libc.obj/samples/build_all.sh
9866 627 d 13 h turbocat /programs/develop/ktcc/trunk/ ktcc: Delete old libc(libck) and old library loaders  
/programs/develop/ktcc/trunk/lib/boxlib
/programs/develop/ktcc/trunk/lib/buf2d
/programs/develop/ktcc/trunk/lib/http
/programs/develop/ktcc/trunk/lib/inputbox
/programs/develop/ktcc/trunk/lib/libimg
/programs/develop/ktcc/trunk/lib/libnetwork
/programs/develop/ktcc/trunk/lib/librasterworks
/programs/develop/ktcc/trunk/lib/msgbox
/programs/develop/ktcc/trunk/lib/proc_lib
/programs/develop/ktcc/trunk/lib/sample
/programs/develop/ktcc/trunk/libc
9864 629 d 22 h turbocat /programs/develop/ktcc/trunk/libc.obj/include/sys/ ksys.h: fixed data types in futex wrappers  
/programs/develop/ktcc/trunk/libc.obj/include/sys/ksys.h
9863 633 d 10 h turbocat /programs/develop/ktcc/trunk/libc.obj/source/stdio/ Rollback to 9861.  
/programs/develop/ktcc/trunk/libc.obj/source/stdio/format_scan.c
9862 633 d 10 h turbocat /programs/develop/ktcc/trunk/libc.obj/source/stdio/ libc.obj : Try fix "%o" scanf bug.  
/programs/develop/ktcc/trunk/libc.obj/source/stdio/format_scan.c
9861 636 d 4 h eastorwest /programs/develop/ktcc/trunk/libc.obj/source/stdio/ fix sscanf  
/programs/develop/ktcc/trunk/libc.obj/source/stdio/format_scan.c
9860 639 d 23 h Doczom /programs/develop/libraries/box_lib/trunk/doc/ added documentation for the frame element  
/programs/develop/libraries/box_lib/trunk/doc/frame
/programs/develop/libraries/box_lib/trunk/doc/frame/SCR_1.PNG
/programs/develop/libraries/box_lib/trunk/doc/frame/SCR_2.PNG
/programs/develop/libraries/box_lib/trunk/doc/frame/SCR_3.PNG
/programs/develop/libraries/box_lib/trunk/doc/frame/SCR_4.PNG
/programs/develop/libraries/box_lib/trunk/doc/frame/SCR_5.PNG
/programs/develop/libraries/box_lib/trunk/doc/frame/info_frame.htm
/programs/develop/libraries/box_lib/trunk/doc/box_lib.htm
9859 646 d 13 h turbocat /programs/develop/ktcc/trunk/bin/ Added builded kos32-tcc  
/programs/develop/ktcc/trunk/bin/kos32-tcc
/programs/develop/ktcc/trunk/bin/kos32-tcc.exe
9847 667 d 22 h akron1 /programs/develop/oberon07/ oberon07: [fastcall] implemented  
/programs/develop/oberon07/Compiler
/programs/develop/oberon07/Compiler.exe
/programs/develop/oberon07/Compiler.kex
/programs/develop/oberon07/doc/x86.txt
/programs/develop/oberon07/source/AMD64.ob07
/programs/develop/oberon07/source/Compiler.ob07
/programs/develop/oberon07/source/ERRORS.ob07
/programs/develop/oberon07/source/IL.ob07
/programs/develop/oberon07/source/PARS.ob07
/programs/develop/oberon07/source/PROG.ob07
/programs/develop/oberon07/source/STATEMENTS.ob07
/programs/develop/oberon07/source/UTILS.ob07
/programs/develop/oberon07/source/X86.ob07
9846 669 d 23 h turbocat /programs/develop/ktcc/trunk/libc.obj/source/ libc.obj set "tan" as global  
/programs/develop/ktcc/trunk/libc.obj/source/Tupfile.lua
/programs/develop/ktcc/trunk/libc.obj/source/libc.c
/programs/develop/ktcc/trunk/libc.obj/source/math/tan.s
9845 670 d 0 h turbocat /programs/develop/ktcc/trunk/source/ ktcc: fixed relocatable object generation bug (parameter -r).  
/programs/develop/ktcc/trunk/source/tcc.c
9844 670 d 3 h turbocat /programs/develop/ktcc/trunk/libc.obj/source/ libc.obj: remove gcc dependency from tupfile.  
/programs/develop/ktcc/trunk/libc.obj/source/Tupfile.lua
9843 670 d 3 h turbocat /programs/develop/ktcc/trunk/libc.obj/source/ libc.obj: now builded to kos32-tcc  
/programs/develop/ktcc/trunk/libc.obj/source/math/sqrt.s
/programs/develop/ktcc/trunk/libc.obj/source/math/tan.s
/programs/develop/ktcc/trunk/libc.obj/source/math/sqrt.asm
/programs/develop/ktcc/trunk/libc.obj/source/math/tan.asm
/programs/develop/ktcc/trunk/libc.obj/source/Tupfile.lua
/programs/develop/ktcc/trunk/libc.obj/source/libc.c
/programs/develop/ktcc/trunk/libc.obj/source/stdlib/assert.c
/programs/develop/ktcc/trunk/libc.obj/source/time/asctime.c
9836 674 d 8 h turbocat / ksys.h:
- Fixed formatting;
- Added wrapper for sysfunction 65.
 
/contrib/sdk/sources/newlib/libc/include/sys/ksys.h
/programs/develop/ktcc/trunk/libc.obj/include/sys/ksys.h
9835 679 d 17 h akron1 /programs/develop/cedit/ CEdit: bugfix ([enter], [ctrl+{up/down}])  
/programs/develop/cedit/CEDIT
/programs/develop/cedit/SRC/CEdit.ob07
/programs/develop/cedit/SRC/Text.ob07
9834 679 d 22 h akron1 /programs/develop/cedit/ CEdit: bugfix  
/programs/develop/cedit/CEDIT
/programs/develop/cedit/SRC/CEdit.ob07
9830 684 d 10 h vitalkrilov / ksys.h:
- KSYS_SLOT_STATE_FREE has right value (9, not 6) now
- few style changes (snake_case)
 
/contrib/sdk/sources/newlib/libc/include/sys/ksys.h
/programs/develop/ktcc/trunk/libc.obj/include/sys/ksys.h
9829 684 d 20 h vitalkrilov / sysfuncr.txt: added missing docs for SysFn77.10, SysFn77.11, SysFn77.13 from wiki
ksys.h:
- libc.obj's file synced with newlib's (r9788)
- added scancodes enum
- added wrappers for SysFn66.4 and SysFn66.5 (sys. hotkeys)
- added wrappers for SysFn77.0 -- SysFn77.3 (futexes)
 
/contrib/sdk/sources/newlib/libc/include/sys/ksys.h
/kernel/trunk/docs/sysfuncr.txt
/programs/develop/ktcc/trunk/libc.obj/include/sys/ksys.h