| // Copyright 2021 The Pigweed Authors |
| // |
| // Licensed under the Apache License, Version 2.0 (the "License"); you may not |
| // use this file except in compliance with the License. You may obtain a copy of |
| // the License at |
| // |
| // https://www.apache.org/licenses/LICENSE-2.0 |
| // |
| // Unless required by applicable law or agreed to in writing, software |
| // distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| // WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| // License for the specific language governing permissions and limitations under |
| // the License. |
| #pragma once |
| |
| #include "pw_protobuf/encoder.h" |
| #include "pw_status/status.h" |
| #include "pw_thread/snapshot.h" |
| #include "pw_thread_protos/thread.pwpb.h" |
| #include "tx_api.h" |
| |
| namespace pw::thread::threadx { |
| |
| // Captures all threadx threads in a system as part of a snapshot. |
| // |
| // An updated running_thread_stack_pointer must be provided in order for the |
| // running thread's context to reflect the running state. For ARM, you might do |
| // something like this: |
| // |
| // // Capture PSP. |
| // void* stack_ptr = 0; |
| // asm volatile("mrs %0, psp\n" : "=r"(stack_ptr)); |
| // pw::thread::ProcessThreadStackCallback cb = |
| // [](pw::thread::Thread::StreamEncoder& encoder, |
| // pw::ConstByteSpan stack) -> pw::Status { |
| // return encoder.WriteRawStack(stack); |
| // }; |
| // pw::thread::threadx::SnapshotThread(my_thread, stack_ptr, |
| // snapshot_encoder, cb); |
| // |
| // Warning: This is only safe to use when interrupts and the scheduler are |
| // disabled! |
| // Warning: SMP ports are not yet supported. |
| Status SnapshotThreads(void* running_thread_stack_pointer, |
| SnapshotThreadInfo::StreamEncoder& encoder, |
| ProcessThreadStackCallback& thread_stack_callback); |
| |
| // Captures only the provided thread handle as a pw::thread::Thread proto |
| // message. After thread info capture, the ProcessThreadStackCallback is called |
| // to capture either the raw_stack or raw_backtrace. |
| // |
| // An updated running_thread_stack_pointer must be provided in order for the |
| // running thread's context to reflect the current state. If the thread being |
| // captured is not the running thread, the value is ignored. Note that the |
| // stack pointer in the thread handle is almost always stale on the running |
| // thread. |
| // |
| // Captures the following proto fields: |
| // pw.thread.Thread: |
| // name |
| // state |
| // stack_start_pointer |
| // stack_end_pointer |
| // stack_pointer |
| // |
| // Warning: This is only safe to use when interrupts and the scheduler are |
| // disabled! |
| // Warning: SMP ports are not yet supported. |
| Status SnapshotThread(const TX_THREAD& thread, |
| void* running_thread_stack_pointer, |
| Thread::StreamEncoder& encoder, |
| ProcessThreadStackCallback& thread_stack_callback); |
| |
| } // namespace pw::thread::threadx |