Fix copyright lines
[folly.git] / folly / fibers / test / StackOverflow.cpp
1 /*
2  * Copyright 2016-present Facebook, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <folly/fibers/FiberManagerMap.h>
18 #include <folly/init/Init.h>
19
20 void f(int* p) {
21   // Make sure recursion is not optimized out
22   int a[100];
23   for (size_t i = 0; i < 100; ++i) {
24     a[i] = i;
25     ++(a[i]);
26     if (p) {
27       a[i] += p[i];
28     }
29   }
30   f(a);
31 }
32
33 int main(int argc, char* argv[]) {
34   folly::init(&argc, &argv);
35
36   folly::EventBase evb;
37   folly::fibers::getFiberManager(evb).addTask([&]() { f(nullptr); });
38   evb.loop();
39 }