2017
[folly.git] / folly / experimental / symbolizer / SignalHandler.h
index 7bb696431b29fc4f968bfd3977895e3afe387998..6b748207e4afa38908cd1f0d49d45ac271ed8fe6 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2016 Facebook, Inc.
+ * Copyright 2017 Facebook, Inc.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -29,14 +29,6 @@ namespace folly { namespace symbolizer {
  */
 void installFatalSignalHandler();
 
-/**
- * NOTE: The signal handler cache has a fixed size. ELF files for the
- * binary and DSOs are added to the cache but never removed.
- *
- * Addresses from ELF files not in the cache will (silently) NOT be symbolized.
- */
-constexpr size_t kFatalSignalHandlerCacheSize = 10000;
-
 /**
  * Add a callback to be run when receiving a fatal signal. They will also
  * be called by LOG(FATAL) and abort() (as those raise SIGABRT internally).
@@ -56,5 +48,4 @@ void addFatalSignalCallback(SignalCallback callback);
  */
 void installFatalSignalCallbacks();
 
-
 }}  // namespaces