[haiku-commits] haiku: hrev56207 - src/system/glue

  • From: waddlesplash <waddlesplash@xxxxxxxxx>
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Tue, 21 Jun 2022 17:16:33 +0000 (UTC)

hrev56207 adds 1 changeset to branch 'master'
old head: 032b1422c2bdafa6938da254f1babb3fdcca60e0
new head: ed20f6660f54b5c48f684ed4ad419daf2571f176
overview: 
https://git.haiku-os.org/haiku/log/?qt=range&q=ed20f6660f54+%5E032b1422c2bd

----------------------------------------------------------------------------

ed20f6660f54: glue: Add comment that argv_save and __main_thread_id need not be 
set here.
  
  But they still are so the glue code is compatible with older Haiku versions.

                              [ Augustin Cavalier <waddlesplash@xxxxxxxxx> ]

----------------------------------------------------------------------------

Revision:    hrev56207
Commit:      ed20f6660f54b5c48f684ed4ad419daf2571f176
URL:         https://git.haiku-os.org/haiku/commit/?id=ed20f6660f54
Author:      Augustin Cavalier <waddlesplash@xxxxxxxxx>
Date:        Tue Jun 21 17:15:17 2022 UTC

----------------------------------------------------------------------------

1 file changed, 1 insertion(+)
src/system/glue/start_dyn.c | 1 +

----------------------------------------------------------------------------

diff --git a/src/system/glue/start_dyn.c b/src/system/glue/start_dyn.c
index 5cb8d116c5..fee6c824f2 100644
--- a/src/system/glue/start_dyn.c
+++ b/src/system/glue/start_dyn.c
@@ -32,6 +32,7 @@ _start(int argc, char **argv, char **environment)
 {
        int returnCode;
 
+       // These are kept here to make our glue code usable under older Haiku 
versions.
        argv_save = argv;
        __main_thread_id = find_thread(NULL);
 


Other related posts:

  • » [haiku-commits] haiku: hrev56207 - src/system/glue - waddlesplash