OLD | NEW |
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ | 1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
2 /* ***** BEGIN LICENSE BLOCK ***** | 2 /* ***** BEGIN LICENSE BLOCK ***** |
3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1 | 3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1 |
4 * | 4 * |
5 * The contents of this file are subject to the Mozilla Public License Version | 5 * The contents of this file are subject to the Mozilla Public License Version |
6 * 1.1 (the "License"); you may not use this file except in compliance with | 6 * 1.1 (the "License"); you may not use this file except in compliance with |
7 * the License. You may obtain a copy of the License at | 7 * the License. You may obtain a copy of the License at |
8 * http://www.mozilla.org/MPL/ | 8 * http://www.mozilla.org/MPL/ |
9 * | 9 * |
10 * Software distributed under the License is distributed on an "AS IS" basis, | 10 * Software distributed under the License is distributed on an "AS IS" basis, |
(...skipping 391 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
402 PR_Unlock(_pr_activeLock); | 402 PR_Unlock(_pr_activeLock); |
403 | 403 |
404 #ifdef IRIX | 404 #ifdef IRIX |
405 _PR_MD_PRE_CLEANUP(me); | 405 _PR_MD_PRE_CLEANUP(me); |
406 /* | 406 /* |
407 * The primordial thread must now be running on the primordial c
pu | 407 * The primordial thread must now be running on the primordial c
pu |
408 */ | 408 */ |
409 PR_ASSERT((_PR_IS_NATIVE_THREAD(me)) || (me->cpu->id == 0)); | 409 PR_ASSERT((_PR_IS_NATIVE_THREAD(me)) || (me->cpu->id == 0)); |
410 #endif | 410 #endif |
411 | 411 |
| 412 _PR_MD_EARLY_CLEANUP(); |
| 413 |
412 _PR_CleanupMW(); | 414 _PR_CleanupMW(); |
413 _PR_CleanupTime(); | 415 _PR_CleanupTime(); |
414 _PR_CleanupDtoa(); | 416 _PR_CleanupDtoa(); |
415 _PR_CleanupCallOnce(); | 417 _PR_CleanupCallOnce(); |
416 _PR_ShutdownLinker(); | 418 _PR_ShutdownLinker(); |
417 _PR_CleanupNet(); | 419 _PR_CleanupNet(); |
418 _PR_CleanupIO(); | 420 _PR_CleanupIO(); |
419 /* Release the primordial thread's private data, etc. */ | 421 /* Release the primordial thread's private data, etc. */ |
420 _PR_CleanupThread(me); | 422 _PR_CleanupThread(me); |
421 | 423 |
(...skipping 435 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
857 PR_fprintf( | 859 PR_fprintf( |
858 PR_STDERR, "'%s' is obsolete. Use '%s' instead.\n", | 860 PR_STDERR, "'%s' is obsolete. Use '%s' instead.\n", |
859 obsolete, (NULL == preferred) ? "something else" : preferred); | 861 obsolete, (NULL == preferred) ? "something else" : preferred); |
860 #endif | 862 #endif |
861 return PR_FALSE; | 863 return PR_FALSE; |
862 } /* _PR_Obsolete */ | 864 } /* _PR_Obsolete */ |
863 | 865 |
864 /* prinit.c */ | 866 /* prinit.c */ |
865 | 867 |
866 | 868 |
OLD | NEW |