Tom Tromey
|
5412728905
|
Bug 757969 - use __thread in ThreadLocal; r=froydnj
|
2016-01-22 10:33:44 -07:00 |
Andrea Marchesini
|
fa1db4f4b7
|
Bug 1231378 - part 3 - Fix uninitialized members of classes in modules/libjar and mfbt, r=smaug
|
2016-01-12 18:16:59 +00:00 |
Carsten "Tomcat" Book
|
ec54e89c4c
|
Backed out changeset 138c4e6a9b45 (bug 1231378)
|
2016-01-12 15:48:55 +01:00 |
Andrea Marchesini
|
8cb83b4f57
|
Bug 1231378 - part 3 - Fix uninitialized members of classes in modules/libjar and mfbt, r=smaug
|
2016-01-12 13:57:34 +00:00 |
Masatoshi Kimura
|
bf312ad056
|
Bug 1120062 - Part 1: Remove most Nullptr.h includes. r=waldo
|
2015-01-11 11:34:52 +09:00 |
Tom Tromey
|
b818cc4847
|
Bug 1093823 - Avoid valgrind report from ThreadLocal<bool>. r=froydnj
|
2014-11-07 08:41:00 -05:00 |
Nicholas Nethercote
|
2a0942be41
|
Bug 1036789 - Convert the third quarter of MFBT to Gecko style. r=Ms2ger.
--HG--
extra : rebase_source : 668cd394806203ddfa34bd4f226335ff26c846b5
|
2014-07-10 19:10:17 -07:00 |
Bobby Holley
|
15c62b0a5a
|
Bug 937317 - Implement basic script settings stack machinery. r=bz
|
2013-12-11 17:51:57 -08:00 |
Phil Ringnalda
|
cacf62c269
|
Back out 35371620801a:bf2019278b77 (bug 937317) for gaia-ui-test bustage and frequent timeouts in its own test
|
2013-12-07 11:08:56 -08:00 |
Bobby Holley
|
e509129d09
|
Bug 937317 - Implement basic script settings stack machinery. r=bz
|
2013-12-06 12:01:41 -08:00 |
Carsten "Tomcat" Book
|
3d08bfcd63
|
Backed out changeset 004fa11e352a (bug 937317) WinXP Build Bustage on a CLOSED TREE
|
2013-12-06 08:42:40 +01:00 |
Bobby Holley
|
a20556f563
|
Bug 937317 - Implement basic script settings stack machinery. r=bz
|
2013-12-05 21:34:16 -08:00 |
Ehsan Akhgari
|
2824b29025
|
Bug 895322 - Part 1: Replace the usages of MOZ_STATIC_ASSERT with C++11 static_assert; r=Waldo
This patch was mostly generated by running the following scripts on the codebase, with some
manual changes made afterwards:
# static_assert.sh
#!/bin/bash
# Command to convert an NSPR integer type to the equivalent standard integer type
function convert() {
echo "Converting $1 to $2..."
find . ! -wholename "*nsprpub*" \
! -wholename "*security/nss*" \
! -wholename "*/.hg*" \
! -wholename "obj-ff-dbg*" \
! -name nsXPCOMCID.h \
! -name prtypes.h \
-type f \
\( -iname "*.cpp" \
-o -iname "*.h" \
-o -iname "*.cc" \
-o -iname "*.mm" \) | \
xargs -n 1 `dirname $0`/assert_replacer.py #sed -i -e "s/\b$1\b/$2/g"
}
convert MOZ_STATIC_ASSERT static_assert
hg rev --no-backup mfbt/Assertions.h \
media/webrtc/signaling/src/sipcc/core/includes/ccapi.h \
modules/libmar/src/mar_private.h \
modules/libmar/src/mar.h
# assert_replacer.py
#!/usr/bin/python
import sys
import re
pattern = re.compile(r"\bMOZ_STATIC_ASSERT\b")
def replaceInPlace(fname):
print fname
f = open(fname, "rw+")
lines = f.readlines()
for i in range(0, len(lines)):
while True:
index = re.search(pattern, lines[i])
if index != None:
index = index.start()
lines[i] = lines[i][0:index] + "static_assert" + lines[i][index+len("MOZ_STATIC_ASSERT"):]
for j in range(i + 1, len(lines)):
if lines[j].find(" ", index) == index:
lines[j] = lines[j][0:index] + lines[j][index+4:]
else:
break
else:
break
f.seek(0, 0)
f.truncate()
f.write("".join(lines))
f.close()
argc = len(sys.argv)
for i in range(1, argc):
replaceInPlace(sys.argv[i])
--HG--
extra : rebase_source : 4b4a4047d82f2c205b9fad8d56dfc3f1afc0b045
|
2013-07-18 13:59:53 -04:00 |
Birunthan Mohanathas
|
9e65e2904f
|
Bug 784739 - Switch from NULL to nullptr in mfbt/. r=jwalden
--HG--
extra : rebase_source : 090706fa9d97854fe3071adf037a09d914a0854f
|
2013-07-25 16:31:48 -07:00 |
Ryan VanderMeulen
|
c5cf7535b6
|
Backed out 3 changesets (bug 896124, bug 784739, bug 894026) for Windows checktest orange on a CLOSED TREE.
Backed out changeset 631b3d5d54f4 (bug 896124)
Backed out changeset 5e1dd28ede5d (bug 894026)
Backed out changeset c10c0a6270ec (bug 784739)
|
2013-07-26 00:08:51 -04:00 |
Birunthan Mohanathas
|
0c642c695d
|
Bug 784739 - Switch from NULL to nullptr in mfbt/. r=jwalden
|
2013-07-25 16:31:48 -07:00 |
Ms2ger
|
51f391870b
|
Bug 896341 - Update include guards and modelines in MFBT; r=Waldo
|
2013-07-24 09:41:39 +02:00 |
Jeff Walden
|
190a1a2986
|
Bug 756709 - Make ThreadLocal::set crash on failure (which really can only happen if per-thread memory for the TLS entry couldn't be allocated, which should be really rare). r=Ms2ger
--HG--
extra : rebase_source : ecda463195c9b67ef6b7d02ef32ed0aa56bc11bc
|
2012-12-17 15:40:50 -05:00 |
Jeff Walden
|
986ff95100
|
Style patrol to make everything conform to mfbt/STYLE. No bug, r=sparky
|
2012-06-03 20:36:43 -07:00 |
Mike Hommey
|
27e941762a
|
Bug 756965 - Allow mozilla::ThreadLocal to store integer types smaller than, or as large as, a pointer. r=Waldo
|
2012-05-22 08:43:55 +02:00 |
Ehsan Akhgari
|
327c5136de
|
Bug 753119 - Add ThreadLocal to mfbt - r=jwalden
... because nobody likes to use the NSPR TLS support.
|
2012-05-09 16:54:33 -04:00 |