Fixing most clang-format errors.
This commit is contained in:
@@ -16,8 +16,7 @@ XEnumerator::XEnumerator(KernelState* kernel_state, size_t item_capacity,
|
||||
size_t item_size)
|
||||
: XObject(kernel_state, kTypeEnumerator),
|
||||
item_capacity_(item_capacity),
|
||||
item_size_(item_size)
|
||||
{}
|
||||
item_size_(item_size) {}
|
||||
|
||||
XEnumerator::~XEnumerator() = default;
|
||||
|
||||
|
||||
@@ -424,8 +424,9 @@ void XThread::DeliverAPCs(void* data) {
|
||||
// kernel_routine(apc_address, &normal_routine, &normal_context,
|
||||
// &system_arg1, &system_arg2)
|
||||
uint64_t kernel_args[] = {
|
||||
apc_address, thread->scratch_address_ + 0, thread->scratch_address_ + 4,
|
||||
thread->scratch_address_ + 8, thread->scratch_address_ + 12,
|
||||
apc_address, thread->scratch_address_ + 0,
|
||||
thread->scratch_address_ + 4, thread->scratch_address_ + 8,
|
||||
thread->scratch_address_ + 12,
|
||||
};
|
||||
processor->ExecuteInterrupt(0, kernel_routine, kernel_args,
|
||||
xe::countof(kernel_args));
|
||||
|
||||
Reference in New Issue
Block a user