Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(39)

Side by Side Diff: Source/wtf/TCSystemAlloc.cpp

Issue 34273002: Remove UnusedParam.h (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « Source/wtf/FastMalloc.cpp ('k') | Source/wtf/ThreadingPthreads.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2005, 2007, Google Inc. 1 // Copyright (c) 2005, 2007, Google Inc.
2 // All rights reserved. 2 // All rights reserved.
3 // 3 //
4 // Redistribution and use in source and binary forms, with or without 4 // Redistribution and use in source and binary forms, with or without
5 // modification, are permitted provided that the following conditions are 5 // modification, are permitted provided that the following conditions are
6 // met: 6 // met:
7 // 7 //
8 // * Redistributions of source code must retain the above copyright 8 // * Redistributions of source code must retain the above copyright
9 // notice, this list of conditions and the following disclaimer. 9 // notice, this list of conditions and the following disclaimer.
10 // * Redistributions in binary form must reproduce the above 10 // * Redistributions in binary form must reproduce the above
(...skipping 19 matching lines...) Expand all
30 // --- 30 // ---
31 // Author: Sanjay Ghemawat 31 // Author: Sanjay Ghemawat
32 32
33 #include "config.h" 33 #include "config.h"
34 #if !USE(SYSTEM_MALLOC) 34 #if !USE(SYSTEM_MALLOC)
35 #include "TCSystemAlloc.h" 35 #include "TCSystemAlloc.h"
36 36
37 #include "Assertions.h" 37 #include "Assertions.h"
38 #include "CheckedArithmetic.h" 38 #include "CheckedArithmetic.h"
39 #include "TCSpinLock.h" 39 #include "TCSpinLock.h"
40 #include "UnusedParam.h"
41 #include "VMTags.h" 40 #include "VMTags.h"
42 #include <algorithm> 41 #include <algorithm>
43 #include <stdint.h> 42 #include <stdint.h>
44 43
45 #if OS(WIN) 44 #if OS(WIN)
46 #include "windows.h" 45 #include "windows.h"
47 #else 46 #else
48 #include <errno.h> 47 #include <errno.h>
49 #include <unistd.h> 48 #include <unistd.h>
50 #include <sys/mman.h> 49 #include <sys/mman.h>
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 233
235 #else 234 #else
236 235
237 // Platforms that don't need to explicitly commit memory use an empty inline ver sion of TCMalloc_SystemCommit 236 // Platforms that don't need to explicitly commit memory use an empty inline ver sion of TCMalloc_SystemCommit
238 // declared in TCSystemAlloc.h 237 // declared in TCSystemAlloc.h
239 238
240 #endif 239 #endif
241 240
242 #endif // #if !USE(SYSTEM_MALLOC) 241 #endif // #if !USE(SYSTEM_MALLOC)
243 242
OLDNEW
« no previous file with comments | « Source/wtf/FastMalloc.cpp ('k') | Source/wtf/ThreadingPthreads.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698