summaryrefslogtreecommitdiff
path: root/frontends/amiga/os3support.c
Commit message (Collapse)AuthorAgeFilesLines
* Mod os3support files so file.c buildsChris Young2020-03-061-1/+6
|
* OS3 was not checking the GA_Disabled tag valueChris Young2017-09-261-1/+2
|
* Use coccinelle to change logging macro calls in c filesVincent Sanders2017-09-061-9/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | for F in $(git ls-files '*.c');do spatch --sp-file foo.cocci --in-place ${F};done @@ expression E; @@ -LOG(E); +NSLOG(netsurf, INFO, E); @@ expression E, E1; @@ -LOG(E, E1); +NSLOG(netsurf, INFO, E, E1); @@ expression E, E1, E2; @@ -LOG(E, E1, E2); +NSLOG(netsurf, INFO, E, E1, E2); @@ expression E, E1, E2, E3; @@ -LOG(E, E1, E2, E3); +NSLOG(netsurf, INFO, E, E1, E2, E3); @@ expression E, E1, E2, E3, E4; @@ -LOG(E, E1, E2, E3, E4); +NSLOG(netsurf, INFO, E, E1, E2, E3, E4); @@ expression E, E1, E2, E3, E4, E5; @@ -LOG(E, E1, E2, E3, E4, E5); +NSLOG(netsurf, INFO, E, E1, E2, E3, E4, E5); @@ expression E, E1, E2, E3, E4, E5, E6; @@ -LOG(E, E1, E2, E3, E4, E5, E6); +NSLOG(netsurf, INFO, E, E1, E2, E3, E4, E5, E6); @@ expression E, E1, E2, E3, E4, E5, E6, E7; @@ -LOG(E, E1, E2, E3, E4, E5, E6, E7); +NSLOG(netsurf, INFO, E, E1, E2, E3, E4, E5, E6, E7);
* Free the structure with the correct function callChris Young2017-06-081-1/+1
|
* Correct alignment (thx Jaime Cagigal)Chris Young2017-06-071-1/+1
|
* more allocvec/malloc changesChris Young2016-11-191-159/+158
|
* Move slab size def into memory.cChris Young2016-11-191-2/+0
|
* Increase slab size to 8K (recommended size)Chris Young2016-11-191-1/+1
|
* Fix some warningsChris Young2016-11-181-8/+11
|
* Move declaration to ensure ULONG is definedChris Young2016-11-171-2/+2
|
* Enable slab allocator on OS3Chris Young2016-11-171-1/+3
| | | | ...if we have a sufficiently new (experimental) version of clib2.
* move frontends into sub directoryVincent Sanders2016-05-151-0/+431