Title
Locales need to be per thread and updated for POSIX changes
Status
nad
Section
[localization]
Submitter
Peter Dimov

Created on 2007-07-28.00:00:00 last changed 62 months ago

Messages

Date: 2019-02-26.17:49:57

[ Kona 2019 ]

Jonathan points out: The standard already allows per-thread locales, see [locale] p9.

Date: 2018-06-22.06:38:21

[ LEWG Kona 2017 ]

Recommend NAD: uselocale() is bad; pass locales around as objects

Date: 2010-10-21.18:28:33

[ 2009-07 Frankfurt: ]

It's our intention to stay in sync with WG14. If WG14 makes a decision that requires a change in WG21 the issue will be reopened.

Move to NAD Future.

Date: 2010-10-21.18:28:33

[ San Francisco: Bill and Nick still intend to provide wording, but this is a part of the task to be addressed by the group that will look into issue 860. ]

Date: 2010-10-21.18:28:33

[ Kona (2007): Bill and Nick to provide wording. ]

Date: 2007-07-28.00:00:00

The POSIX "Extended API Set Part 4,"

http://www.opengroup.org/sib/details.tpl?id=C065

introduces extensions to the C locale mechanism that allow multiple concurrent locales to be used in the same application by introducing a type locale_t that is very similar to std::locale, and a number of _l functions that make use of it.

The global locale (set by setlocale) is now specified to be per- process. If a thread does not call uselocale, the global locale is in effect for that thread. It can install a per-thread locale by using uselocale.

There is also a nice querylocale mechanism by which one can obtain the name (such as "de_DE") for a specific facet, even for combined locales, with no std::locale equivalent.

std::locale should be harmonized with the new POSIX locale_t mechanism and provide equivalents for uselocale and querylocale.

History
Date User Action Args
2019-02-26 17:49:57adminsetmessages: + msg10325
2018-06-22 06:38:21adminsetmessages: + msg9954
2018-06-22 06:38:21adminsetstatus: lewg -> nad
2014-11-24 15:11:58adminsetstatus: nad future -> lewg
2010-10-21 18:28:33adminsetmessages: + msg3503
2010-10-21 18:28:33adminsetmessages: + msg3502
2010-10-21 18:28:33adminsetmessages: + msg3501
2007-07-28 00:00:00admincreate