aboutsummaryrefslogtreecommitdiff
path: root/pw_thread_zephyr/thread_iteration.cc
blob: bc120deb5b1ae20019a59e37d7216ed0e6ce77a1 (plain)
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
// Copyright 2023 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.

#include "pw_thread/thread_iteration.h"

#include <zephyr/kernel.h>

namespace pw::thread {

namespace zephyr {
void zephyr_adapter(const struct k_thread* thread, void* user_data) {
  const pw::thread::ThreadCallback& cb =
      *reinterpret_cast<const pw::thread::ThreadCallback*>(user_data);

  ThreadInfo thread_info;

  span<const std::byte> current_name =
      as_bytes(span(std::string_view(k_thread_name_get((k_tid_t)thread))));
  thread_info.set_thread_name(current_name);

#ifdef CONFIG_THREAD_STACK_INFO
  thread_info.set_stack_low_addr(thread->stack_info.start);
  thread_info.set_stack_pointer(thread->stack_info.start +
                                thread->stack_info.size);
#endif

  cb(thread_info);
}
}  // namespace zephyr

Status ForEachThread(const pw::thread::ThreadCallback& cb) {
  k_thread_user_cb_t adapter_cb = zephyr::zephyr_adapter;

  k_thread_foreach(adapter_cb, (void*)&cb);

  return OkStatus();
}

}  // namespace pw::thread