third_party.pigweed.src/pw_bloat/base_main.cc
Wyatt Hepler cfe3526996 Move pw_bloat infinite loop into BloatThisBinary
To avoid bloat binaries from needing an infinite loop at the end of the
main function, put an infinite loop at the start of BloatThisBinary.
Now, bloat binaries based on the standard pw_bloat base only have to
call BloatThisBinary in their main function.

Change-Id: I165bb76a3d7a85fb1a10b5f55a0538da7d920f82
2019-11-15 21:53:01 +00:00

21 lines
698 B
C++

// Copyright 2019 The Pigweed Authors
//
// Licensed under the Apache License, Version 2.0 (the "License"); you may not
// use this file except in compliance with the License. You may obtain a copy
// of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
// License for the specific language governing permissions and limitations
// under the License.
#include "pw_bloat/bloat_this_binary.h"
int main() {
pw::bloat::BloatThisBinary();
return 0;
}