DragonFly BSD
 

Message4795

Author jgordeev
Recipients
Date 2008-06-28.19:52:02
Content
The included patch makes code comments match code and documentation (man 
page).

Index: sys/platform/pc32/i386/tls.c
===================================================================
--- sys/platform/pc32/i386/tls.c    (revision 27)
+++ sys/platform/pc32/i386/tls.c    (working copy)
@@ -62,7 +62,7 @@
  * Returns the value userland needs to load into %gs representing the
  * TLS descriptor or -1 on error.
  *
- * (struct tls_info *info, int infosize, int which)
+ * (int which, struct tls_info *info, size_t infosize)
  */
 int
 sys_set_tls_area(struct set_tls_area_args *uap)
@@ -154,7 +154,7 @@
  * Returns the value userland needs to load into %gs representing the
  * TLS descriptor or -1 on error.
  *
- * (struct tls_info *info, int infosize, int which)
+ * (int which, struct tls_info *info, size_t infosize)
  */
 int
 sys_get_tls_area(struct get_tls_area_args *uap)
Index: sys/platform/pc64/amd64/tls.c
===================================================================
--- sys/platform/pc64/amd64/tls.c    (revision 27)
+++ sys/platform/pc64/amd64/tls.c    (working copy)
@@ -61,7 +61,7 @@
  * Returns the value userland needs to load into %gs representing the
  * TLS descriptor or -1 on error.
  *
- * (struct tls_info *info, int infosize, int which)
+ * (int which, struct tls_info *info, size_t infosize)
  */
 int
 sys_set_tls_area(struct set_tls_area_args *uap)
@@ -153,7 +153,7 @@
  * Returns the value userland needs to load into %gs representing the
  * TLS descriptor or -1 on error.
  *
- * (struct tls_info *info, int infosize, int which)
+ * (int which, struct tls_info *info, size_t infosize)
  */
 int
 sys_get_tls_area(struct get_tls_area_args *uap)
History
Date User Action Args
2008-06-28 19:52:06jgordeevlinkissue1034 messages
2008-06-28 19:52:02jgordeevcreate