mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
ImpellerC tests that use a temporary directory will append the current process ID to the directory name to avoid collisions. The temporary directory will also be deleted after each test case completes. See https://github.com/flutter/flutter/issues/143379
15 lines
325 B
C++
15 lines
325 B
C++
// Copyright 2013 The Flutter Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef FLUTTER_FML_PROCESS_H_
|
|
#define FLUTTER_FML_PROCESS_H_
|
|
|
|
namespace fml {
|
|
|
|
int GetCurrentProcId();
|
|
|
|
} // namespace fml
|
|
|
|
#endif // FLUTTER_FML_PROCESS_H_
|