forked from mirrors/gecko-dev
Creates a NoNewThreadsChecker plugin that looks for the function and checks to see if it's allowed. -Creates two allowlists - `ThreadAllows.txt` is for thread names, while `ThreadFileAllows.txt` checks for entire files where instances of `NS_NewNamedThread` should be ignored. -If an instance of `NS_NewNamedThread` is not listed in either list, then the checker throws an error with an additional note containing a more descriptive explanation of the failure. Differential Revision: https://phabricator.services.mozilla.com/D62635 --HG-- extra : moz-landing-system : lando
18 lines
633 B
C++
18 lines
633 B
C++
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#ifndef NoNewThreadsChecker_h__
|
|
#define NoNewThreadsChecker_h__
|
|
|
|
#include "plugin.h"
|
|
|
|
class NoNewThreadsChecker : public BaseCheck {
|
|
public:
|
|
NoNewThreadsChecker(StringRef CheckName, ContextType *Context = nullptr)
|
|
: BaseCheck(CheckName, Context) {}
|
|
void registerMatchers(MatchFinder *AstMatcher) override;
|
|
void check(const MatchFinder::MatchResult &Result) override;
|
|
};
|
|
|
|
#endif // !defined(NoNewThreadsChecker_h__)
|