diff options
author | Elliott Hughes <enh@google.com> | 2014-05-14 10:02:03 -0700 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2014-05-14 10:02:03 -0700 |
commit | 1728b2396591853345507a063ed6075dfd251706 (patch) | |
tree | 7083cd234073afa5179b94b3d978550c890af90c /libc/bionic/libc_init_common.cpp | |
parent | bac795586bbc5dcbe886d8d781710f60c4c19d9b (diff) | |
download | android_bionic-1728b2396591853345507a063ed6075dfd251706.tar.gz android_bionic-1728b2396591853345507a063ed6075dfd251706.tar.bz2 android_bionic-1728b2396591853345507a063ed6075dfd251706.zip |
Switch to g_ for globals.
That's what the Google style guide recommends, and we're starting
to get a mix.
Change-Id: Ib0c53a890bb5deed5c679e887541a715faea91fc
Diffstat (limited to 'libc/bionic/libc_init_common.cpp')
-rw-r--r-- | libc/bionic/libc_init_common.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/bionic/libc_init_common.cpp b/libc/bionic/libc_init_common.cpp index 1cfaf507a..abf2d3674 100644 --- a/libc/bionic/libc_init_common.cpp +++ b/libc/bionic/libc_init_common.cpp @@ -77,7 +77,7 @@ static size_t get_main_thread_stack_size() { * apply to linker-private copies and will not be visible from libc later on. * * Note: this function creates a pthread_internal_t for the initial thread and - * stores the pointer in TLS, but does not add it to pthread's gThreadList. This + * stores the pointer in TLS, but does not add it to pthread's thread list. This * has to be done later from libc itself (see __libc_init_common). * * This function also stores a pointer to the kernel argument block in a TLS slot to be |