Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed job queues #101

Merged
merged 1 commit into from
Dec 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions include/RED4ext/JobQueue-inl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,12 @@ RED4EXT_INLINE RED4ext::JobParamSet::JobParamSet() noexcept
{
}

RED4EXT_INLINE RED4ext::JobHandle::JobHandle(JobParamSet aParams, uintptr_t aUnk)
: unk00(nullptr)
RED4EXT_INLINE RED4ext::JobHandle::JobHandle(uintptr_t aUnk)
{
using func_t = void (*)(JobHandle*, JobParamSet&, uintptr_t);
using func_t = void* (*)(void*, uintptr_t);
RelocFunc<func_t> func(Addresses::JobHandle_ctor);

func(this, aParams, aUnk);
unk00 = func(nullptr, aUnk);
}

RED4EXT_INLINE RED4ext::JobHandle::~JobHandle()
Expand Down
3 changes: 1 addition & 2 deletions include/RED4ext/JobQueue.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,9 @@ RED4EXT_ASSERT_SIZE(JobParamSet, 0x3);
*/
struct JobHandle
{
JobHandle() = default;
JobHandle(uintptr_t aUnk = 0);
JobHandle(const JobHandle&) = default;
JobHandle(JobHandle&&) = default;
JobHandle(JobParamSet aParams, uintptr_t aUnk = 0);
~JobHandle();

/**
Expand Down