Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Show changed files | Details | Compare with Previous | Blame | RSS feed

Filtering Options

Rev Age Author Path Log message Diff
9965 137 d 2 h dunkaist / Update demos/gears to use sys/ksys.h  
9952 147 d 8 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".
 
9947 242 d 8 h ace_dent / Update `docs/README.TXT` and rename to `CREDITS`
- Rename to `CREDITS.TXT` for clarity.
- Improve text of opening paragraph. Thanks to various translators.
- Reformat to use headings, removing excessive whitespace characters (~2.5KiB).
- Sort list of contributors alphabetically; easier to maintain.
- Add missing contributors and remove from `kernel.asm`. Thanks to @rgimad.
- Minor formatting and whitespace cleanup.
 
9946 242 d 17 h akron1 /programs/develop/cedit/ CEdit:
- added line spacing setting
- disabled highlighting of anonymous labels
 
9945 242 d 21 h Doczom / Added new driver for mount raw disk images.
- Added driver virt_disk.sys
- Added the program "virtdisk" which allows you to add, delete and view virtual disks.
 
9940 251 d 23 h IgorA /programs/bcc32/ bcc32: add rasterworks example  
9936 262 d 9 h dunkaist /programs/demos/ScreenRuler/ Rename TUPFILE.LUA to Tupfile.lua

Yes, autobuild is case-sensitive.
 
9935 262 d 11 h spaceraven /programs/demos/ScreenRuler/ Deleting binary; correcting small mistakes in ScreenRuler.asm  
9934 262 d 12 h spaceraven /programs/demos/ScreenRuler/ New program - Screen Ruler, for measuring distance between 2 pixel on screen.  
9933 272 d 4 h dunkaist /programs/system/taskbar/trunk/ [taskbar] Add LCtrl+Esc hotkey to open/close menu  
9927 298 d 15 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.
 
9916 358 d 0 h Doczom /programs/network/ftpd/ FTPd: added the DELE and STOR functions, fixed the output code for the new connection  
9915 389 d 13 h akron1 /programs/develop/cedit/ CEdit: added [shift+mouse wheel] for horizontal scrolling;
search improved.
 
9914 395 d 18 h qullarwee /programs/other/mousepos/ Upload "mousepos" utility  
9913 413 d 11 h akron1 /programs/develop/cedit/ CEdit: bugfix  
9912 415 d 8 h akron1 / FB2 Reader: fixed rolling up  
9909 429 d 7 h akron1 /programs/develop/cedit/ CEdit:
- highlight @@:/@f/@b/@r
- numpad support
 
9908 429 d 13 h Doczom /programs/ Updated dll.load. Added support for loading the library using the full path.
Fixed makefile for Whether
 
9907 439 d 17 h akron1 /programs/develop/cedit/ CEdit: fixed whole word search  
9906 452 d 8 h akron1 /programs/develop/cedit/ CEdit: minor fix  
9904 459 d 10 h akron1 /programs/develop/cedit/ CEdit: optimization  
9903 461 d 15 h akron1 /programs/develop/cedit/ CEdit: reduced memory usage, small improvements  
9902 463 d 14 h akron1 /programs/develop/cedit/ CEdit: reduced memory usage  
9898 484 d 16 h akron1 / FB2 Reader: refactoring, reduced memory usage for images, small improvements  
9896 494 d 16 h akron1 / FB2 Reader: upload source, small changes  
9895 494 d 18 h akron1 /programs/develop/oberon07/ oberon07: bugfix  
9893 495 d 15 h akron1 /programs/develop/ oberon07: lower case by default  
9892 495 d 18 h akron1 /programs/develop/cedit/ CEdit: clipping text, small changes  
9891 503 d 20 h akron1 /programs/develop/cedit/ CEdit: minor fixes  
9887 522 d 20 h Doczom /programs/cmm/ drvinst: small bug fixed  
9885 551 d 8 h Doczom /programs/testing/kbd/trunk/ KBD: fixing a program crash on unsupported devices  
9883 592 d 9 h Doczom /programs/system/amd_temp_view/ AMDtemp: fix parser and code style. TODO: add function for device subsystem  
9877 620 d 13 h Doczom /programs/system/docky/trunk/ docky.asm: fix timeout for connect to @reshare  
9876 628 d 7 h Doczom /programs/system/docky/trunk/ docky.asm: added notify from error load @RESHARE  
9873 638 d 9 h akron1 /programs/develop/oberon07/ oberon07:
- faster loading of real constants into registers
- deleting unnecessary files
 
9870 656 d 8 h Doczom /programs/system/amd_temp_view/ AMDtemp: updated the interface and the function of saving graph. The program uses futex.
TODO: fix parser and add check drivers list
 
9868 667 d 16 h turbocat /programs/develop/ktcc/trunk/libc.obj/ libc.obj:
- now using vsscanf from BaseLibc;
- delete extra pragma
- disable sort includes(clang-format)
 
9867 668 d 0 h turbocat /programs/develop/ktcc/trunk/libc.obj/samples/ libc.obj : added a very simple example of working with futexes  
9866 669 d 0 h turbocat /programs/develop/ktcc/trunk/ ktcc: Delete old libc(libck) and old library loaders  
9864 671 d 9 h turbocat /programs/develop/ktcc/trunk/libc.obj/include/sys/ ksys.h: fixed data types in futex wrappers