Zachary Turner | c205570 | 2015-04-27 17:19:26 +0000 | [diff] [blame] | 1 | //===- llvm/Support/Unix/COM.inc - Unix COM Implementation -----*- C++ -*-===// |
| 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame^] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
Zachary Turner | c205570 | 2015-04-27 17:19:26 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | // |
| 9 | // This file implements the Unix portion of COM support. |
| 10 | // |
| 11 | //===----------------------------------------------------------------------===// |
| 12 | |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | //=== WARNING: Implementation here must contain only generic UNIX code that |
| 15 | //=== is guaranteed to work on *all* UNIX variants. |
| 16 | //===----------------------------------------------------------------------===// |
| 17 | |
| 18 | namespace llvm { |
| 19 | namespace sys { |
| 20 | |
Zachary Turner | e629530 | 2015-04-27 17:22:30 +0000 | [diff] [blame] | 21 | InitializeCOMRAII::InitializeCOMRAII(COMThreadingMode Threading, |
| 22 | bool SpeedOverMemory) {} |
Zachary Turner | c205570 | 2015-04-27 17:19:26 +0000 | [diff] [blame] | 23 | |
Zachary Turner | e629530 | 2015-04-27 17:22:30 +0000 | [diff] [blame] | 24 | InitializeCOMRAII::~InitializeCOMRAII() {} |
Zachary Turner | c205570 | 2015-04-27 17:19:26 +0000 | [diff] [blame] | 25 | } |
| 26 | } |