File: external_semaphore_windows.h

package info (click to toggle)
intel-compute-runtime 25.48.36300.8-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 80,652 kB
  • sloc: cpp: 939,022; lisp: 2,090; sh: 722; makefile: 162; python: 21
file content (53 lines) | stat: -rw-r--r-- 1,555 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*
 * Copyright (C) 2025 Intel Corporation
 *
 * SPDX-License-Identifier: MIT
 *
 */

#pragma once
#include "shared/source/device/device.h"
#include "shared/source/helpers/debug_helpers.h"
#include "shared/source/helpers/non_copyable_or_moveable.h"
#include "shared/source/helpers/topology_map.h"
#include "shared/source/os_interface/external_semaphore.h"
#include "shared/source/os_interface/os_interface.h"
#include "shared/source/os_interface/windows/d3dkmthk_wrapper.h"

#include <limits>
#include <memory>
#include <string>

namespace NEO {

typedef wchar_t SharedSyncName[9 + 2 * (sizeof(uint32_t) + sizeof(uint64_t))];

struct SharedMemoryContentHeader {
    alignas(8) uint64_t lastSignaledValue;
    SharedSyncName sharedSyncName;
    uint32_t access;
    uint32_t serializedSecurityDescriptorStringSize;
};

class ExternalSemaphoreWindows : public ExternalSemaphore {
  public:
    static std::unique_ptr<ExternalSemaphoreWindows> create(OSInterface *osInterface);

    ~ExternalSemaphoreWindows() override{};

    bool importSemaphore(void *extHandle, int fd, uint32_t flags, const char *name, Type type, bool isNative) override;

    bool enqueueWait(uint64_t *fenceValue) override;
    bool enqueueSignal(uint64_t *fenceValue) override;

    SharedMemoryContentHeader *getSharedMemoryContentHeader() {
        return reinterpret_cast<SharedMemoryContentHeader *>(this->pCpuAddress);
    }

  protected:
    D3DKMT_HANDLE syncHandle;
    void *pCpuAddress = nullptr;
    volatile uint64_t *pLastSignaledValue = nullptr;
};

} // namespace NEO