
{"id":12842,"date":"2026-03-13T10:36:03","date_gmt":"2026-03-13T10:36:03","guid":{"rendered":"https:\/\/developer.rdkcentral.com\/documentation\/?page_id=12842"},"modified":"2026-03-13T10:43:43","modified_gmt":"2026-03-13T10:43:43","slug":"epon-manager-thread-architecture","status":"publish","type":"page","link":"https:\/\/developer.rdkcentral.com\/documentation\/documentation\/rdk_broadband_documentation\/components\/epon-manager\/epon-manager-thread-architecture\/","title":{"rendered":"EPON Manager &#8211; Thread Architecture"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">Thread Overview&nbsp;<\/h2>\n\n\n\n<div class=\"wp-block-merpress-mermaidjs diagram-source-mermaid\"><pre class=\"mermaid\">graph TB\n    Main[Main Thread&lt;br\/>EPON Controller&lt;br\/>---&lt;br\/>\u2022 Initialization&lt;br\/>\u2022 Coordination&lt;br\/>\u2022 Shutdown]\n    \n    RBusT[RBus Thread&lt;br\/>---&lt;br\/>\u2022 RBus Loop&lt;br\/>\u2022 DML Handler&lt;br\/>\u2022 Event Publish]\n    \n    EventT[Event Listener Thread&lt;br\/>---&lt;br\/>\u2022 Poll Event Queue&lt;br\/>\u2022 Event Processing&lt;br\/>\u2022 Notify Components]\n    \n    StatsT[Stats Poller Thread&lt;br\/>Harvester&lt;br\/>---&lt;br\/>\u2022 Timer Loop&lt;br\/>\u2022 HAL Poll&lt;br\/>\u2022 Cache Update]\n    \n    Main -->|Creates &amp; Manages| RBusT\n    Main -->|Creates &amp; Manages| EventT\n    Main -->|Creates &amp; Manages| StatsT\n    \n    RBusT -.->|Mutex Protected| Cache[(Cache)]\n    StatsT -.->|Mutex Protected| Cache\n    EventT -->|Poll| EventQ[Event Queue]\n    \n    style Main fill:#4A90E2,stroke:#2E5C8A,color:#fff,stroke-width:3px\n    style RBusT fill:#9C27B0,stroke:#6A1B9A,color:#fff\n    style EventT fill:#FF9800,stroke:#F57C00,color:#fff\n    style StatsT fill:#4CAF50,stroke:#388E3C,color:#fff\n    style Cache fill:#FFD700,stroke:#B8860B\n    style EventQ fill:#E91E63,stroke:#C2185B,color:#fff<\/pre><\/div>\n\n\n\n<p><br>&nbsp;Thread Details<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>1. Main Thread (EPON Controller)<\/strong><\/h3>\n\n\n\n<p><strong>Purpose:<\/strong>&nbsp;System initialization, coordination, and shutdown management<\/p>\n\n\n\n<p><strong>Responsibilities:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Initialize all subsystems<\/li>\n\n\n\n<li>Create and manage worker threads<\/li>\n\n\n\n<li>Handle signals and shutdown requests<\/li>\n\n\n\n<li>Coordinate resource cleanup<\/li>\n<\/ul>\n\n\n\n<p><strong>Lifecycle:<\/strong><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">START  INIT  CREATE_THREADS  MONITOR  SHUTDOWN  EXIT\n<\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\"><\/pre>\n\n\n\n<p><strong>Key Functions:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>epon_controller_init()<\/code>&nbsp;&#8211; Initialize subsystems<\/li>\n\n\n\n<li><code>epon_controller_start()<\/code>&nbsp;&#8211; Start all threads<\/li>\n\n\n\n<li><code>epon_controller_stop()<\/code>&nbsp;&#8211; Graceful shutdown<\/li>\n\n\n\n<li><code>signal_handler()<\/code>&nbsp;&#8211; Handle OS signals<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"EPONManagerThreadArchitecture-2.RBus\/DBusThread\">2. RBus\/DBus Thread<\/h3>\n\n\n\n<p><strong>Purpose:<\/strong>&nbsp;Handle bus communication and TR-181 operations<\/p>\n\n\n\n<p><strong>Responsibilities:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Initialize RBus\/DBus connection<\/li>\n\n\n\n<li>Register TR-181 DML parameters<\/li>\n\n\n\n<li>Process GET\/SET requests<\/li>\n\n\n\n<li>Publish events to other components<\/li>\n\n\n\n<li>Maintain bus connection health<\/li>\n<\/ul>\n\n\n\n<p><strong>Thread Loop:<\/strong><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">while (running) {\n    wait_for_rbus_event()\n    if (request_received) {\n        process_request()\n        send_response()\n    }\n    if (event_to_publish) {\n        publish_event()\n    }\n}\n<\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\">&nbsp;<\/pre>\n\n\n\n<p><strong>Synchronization:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Mutex for cache access<\/li>\n\n\n\n<li>Message queue for inter-thread communication<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"EPONManagerThreadArchitecture-3.HALEventListenerThread\">3. HAL Event Listener Thread<\/h3>\n\n\n\n<p><strong>Purpose:<\/strong>&nbsp;Process events from EPON HAL<\/p>\n\n\n\n<p><strong>Responsibilities:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Poll HAL event queue<\/li>\n\n\n\n<li>Categorize and dispatch events<\/li>\n\n\n\n<li>Update system state based on events<\/li>\n\n\n\n<li>Notify other components<\/li>\n<\/ul>\n\n\n\n<p><strong>Thread Loop:<\/strong><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">while (running) {\n    event = poll_hal_event_queue()\n    if (event) {\n        switch(event.type) {\n            case ONU_STATUS:\n                process_onu_status(event)\n                break\n            case ALARM:\n                process_alarm(event)\n                break\n        }\n    }\n    sleep(poll_interval)\n}\n<\/pre>\n\n\n\n<p><strong>Event Processing Time:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Target: &lt; 50ms per event<\/li>\n\n\n\n<li>Maximum: &lt; 100ms per event<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<p><strong>4. Stats Polling Thread (Harvester)<\/strong><\/p>\n\n\n\n<p><strong>Purpose:<\/strong>&nbsp;Periodic statistics collection and reporting<\/p>\n\n\n\n<p><strong>Responsibilities:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Poll HAL for statistics at regular intervals<\/li>\n\n\n\n<li>Update internal cache with fresh data<\/li>\n\n\n\n<li>Report statistics to telemetry<\/li>\n\n\n\n<li>Track polling health<\/li>\n<\/ul>\n\n\n\n<p><strong>Thread Loop:<\/strong><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">while (running) {\n    wait_for_interval(15_minutes)\n    if (time_to_poll) {\n        stats = poll_hal_stats()\n        update_cache(stats)\n        report_to_telemetry(stats)\n    }\n}\n<\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\"><\/pre>\n\n\n\n<p><strong>Configuration:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Default interval: 15 minutes (900 seconds)<\/li>\n\n\n\n<li>Configurable<\/li>\n\n\n\n<li>Can be disabled if not needed<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<p>Thread Synchronization<\/p>\n\n\n\n<p><strong>Synchronization Primitives<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><\/pre>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">\/\/ Mutex for cache access\npthread_mutex_t cache_mutex;\n\n\/\/ Condition variable for event notification\npthread_cond_t event_cond;\n\n\/\/ Thread-safe event queue\ntypedef struct {\n    queue_t queue;\n    pthread_mutex_t mutex;\n    pthread_cond_t cond;\n} thread_safe_queue_t;\n<\/pre>\n\n\n\n<p><strong>Critical Sections<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td>Resource<\/td><td>Protected By<\/td><td>Accessed By<\/td><\/tr><tr><td><strong>Stats Cache<\/strong><\/td><td><code>cache_mutex<\/code><\/td><td>RBus Thread, Stats Poller<\/td><\/tr><tr><td><strong>Event Queue<\/strong><\/td><td>Queue mutex<\/td><td>HAL (producer), Event Listener (consumer)<\/td><\/tr><tr><td><strong>Configuration<\/strong><\/td><td>RW lock<\/td><td>All threads (read), RBus (write)<\/td><\/tr><tr><td><strong>Logger<\/strong><\/td><td>Internal mutex<\/td><td>All threads<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>Lock Ordering<\/strong><\/p>\n\n\n\n<p>To prevent deadlocks, locks must be acquired in this order:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Configuration lock (if needed)<\/li>\n\n\n\n<li>Cache lock (if needed)<\/li>\n\n\n\n<li>Queue lock (if needed)<\/li>\n<\/ol>\n\n\n\n<p><strong>Never acquire locks in reverse order!<\/strong><\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<p>Thread Communication<\/p>\n\n\n\n<p><strong>Inter-Thread Communication Patterns<\/strong><\/p>\n\n\n\n<p><br>&nbsp;<strong>Message Passing<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Event Queue<\/strong>: HAL events Event Listener<\/li>\n\n\n\n<li><strong>Function Calls<\/strong>: Direct calls with mutex protection<\/li>\n\n\n\n<li><strong>Shared Memory<\/strong>: Cache with mutex protection<\/li>\n\n\n\n<li><strong>Signals<\/strong>: Condition variables for thread wake-up<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<p>Thread Lifecycle Management<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"EPONManagerThreadArchitecture-ThreadCreation\">Thread Creation<\/h3>\n\n\n\n<pre class=\"wp-block-preformatted\"><\/pre>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">\/\/ Create RBus thread\npthread_create(&amp;rbus_tid, NULL, rbus_thread_func, &amp;context);\n\n\/\/ Create Event Listener thread\npthread_create(&amp;event_tid, NULL, event_listener_func, &amp;context);\n\n\/\/ Create Stats Poller thread (optional)\nif (config.enable_stats_polling) {\n    pthread_create(&amp;stats_tid, NULL, stats_poller_func, &amp;context);\n}\n<\/pre>\n\n\n\n<p><br>&nbsp;<strong>Thread Shutdown<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">&nbsp;<\/pre>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">\/\/ Signal all threads to stop\nrbus_thread_stop = true;\nevent_listener_stop = true;\nstats_poller_stop = true;\n\n\/\/ Wake threads if sleeping\npthread_cond_broadcast(&amp;event_cond);\n\n\/\/ Wait for threads to exit\npthread_join(rbus_tid, NULL);\npthread_join(event_tid, NULL);\nif (stats_tid) {\n    pthread_join(stats_tid, NULL);\n}\n<\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<p>Thread Safety Considerations<\/p>\n\n\n\n<p><strong>Safe Practices<\/strong><\/p>\n\n\n\n<p><strong>DO:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Always use mutexes for shared data access<\/li>\n\n\n\n<li>Use condition variables for thread signaling<\/li>\n\n\n\n<li>Initialize mutexes before thread creation<\/li>\n\n\n\n<li>Destroy mutexes after threads exit<\/li>\n\n\n\n<li>Check return values of pthread functions<\/li>\n\n\n\n<li>Use timeouts on blocking operations<\/li>\n<\/ul>\n\n\n\n<p><strong>DON&#8217;T:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Access shared data without locks<\/li>\n\n\n\n<li>Hold locks longer than necessary<\/li>\n\n\n\n<li>Call blocking functions while holding locks<\/li>\n\n\n\n<li>Create circular lock dependencies<\/li>\n\n\n\n<li>Ignore thread errors<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"EPONManagerThreadArchitecture-PerformanceConsiderations\">Performance Considerations<\/h2>\n\n\n\n<p><strong>Thread Priorities<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td>Thread<\/td><td>Priority<\/td><td>Reason<\/td><\/tr><tr><td><strong>Event Listener<\/strong><\/td><td>High<\/td><td>Real-time event processing<\/td><\/tr><tr><td><strong>RBus Thread<\/strong><\/td><td>Normal<\/td><td>Request-response handling<\/td><\/tr><tr><td><strong>Stats Poller<\/strong><\/td><td>Low<\/td><td>Background task<\/td><\/tr><tr><td><strong>Main Thread<\/strong><\/td><td>Normal<\/td><td>Coordination<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>CPU Affinity<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Not set by default<\/li>\n\n\n\n<li>Can be configured for real-time systems<\/li>\n<\/ul>\n\n\n\n<p><strong>Memory Usage<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td>Thread<\/td><td>Stack Size<\/td><td>Heap Usage<\/td><\/tr><tr><td><strong>Main<\/strong><\/td><td>Default (8MB)<\/td><td>~2MB<\/td><\/tr><tr><td><strong>RBus<\/strong><\/td><td>Default<\/td><td>~1MB<\/td><\/tr><tr><td><strong>Event Listener<\/strong><\/td><td>Default<\/td><td>~1MB<\/td><\/tr><tr><td><strong>Stats Poller<\/strong><\/td><td>Default<\/td><td>~500KB<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>Total Memory Footprint:<\/strong>&nbsp;~10-15MB<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<p>Error Handling<\/p>\n\n\n\n<p><strong>Thread Crash Handling<\/strong><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">\/\/ Register signal handlers\nsignal(SIGSEGV, thread_crash_handler);\nsignal(SIGABRT, thread_crash_handler);\n\nvoid thread_crash_handler(int sig) {\n    log_critical(\"Thread crashed with signal %d\", sig);\n    \n    \/\/ Notify watchdog\n    notify_watchdog();\n    \n    \/\/ Attempt graceful shutdown\n    epon_controller_stop();\n    \n    exit(1);\n}\n<\/pre>\n\n\n\n<p><br>&nbsp;<strong>Thread Health Monitoring<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Watchdog timer per thread<\/li>\n\n\n\n<li>Heartbeat mechanism<\/li>\n\n\n\n<li>Automatic restart on hang detection<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<p>Deadlock Prevention<\/p>\n\n\n\n<p><strong>Detection Strategy<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Lock timeout mechanism (5 seconds)<\/li>\n\n\n\n<li>Consistent lock ordering<\/li>\n\n\n\n<li>Lock hierarchy enforcement<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-preformatted\"><\/pre>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">#define LOCK_TIMEOUT_MS 5000\n\nint safe_mutex_lock(pthread_mutex_t *mutex) {\n    struct timespec timeout;\n    clock_gettime(CLOCK_REALTIME, &amp;timeout);\n    timeout.tv_sec += LOCK_TIMEOUT_MS \/ 1000;\n    \n    int ret = pthread_mutex_timedlock(mutex, &amp;timeout);\n    if (ret == ETIMEDOUT) {\n        log_error(\"Mutex lock timeout - possible deadlock\");\n        return -1;\n    }\n    return ret;\n}\n<\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<p>Thread Debugging<\/p>\n\n\n\n<p><strong>Debug Logging<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><\/pre>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">\/\/ Thread entry\/exit logging\n#define THREAD_ENTER() log_debug(\"[%s] Thread entered\", __FUNCTION__)\n#define THREAD_EXIT()  log_debug(\"[%s] Thread exiting\", __FUNCTION__)\n\n\/\/ Lock debugging\n#define LOCK_TRACE()   log_debug(\"[%s] Acquiring lock\", __FUNCTION__)\n#define UNLOCK_TRACE() log_debug(\"[%s] Releasing lock\", __FUNCTION__)\n<\/pre>\n\n\n\n<p><strong>Tools<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>gdb<\/strong>: Attach to running process, examine threads<\/li>\n\n\n\n<li><strong>valgrind &#8211;tool=helgrind<\/strong>: Detect race conditions<\/li>\n\n\n\n<li><strong>strace -f<\/strong>: Trace system calls from all threads<\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>Thread Overview&nbsp; &nbsp;Thread Details 1. Main Thread (EPON Controller) Purpose:&nbsp;System initialization, coordination, and shutdown management [&hellip;]<\/p>\n","protected":false},"author":659,"featured_media":0,"parent":12819,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_bbp_topic_count":0,"_bbp_reply_count":0,"_bbp_total_topic_count":0,"_bbp_total_reply_count":0,"_bbp_voice_count":0,"_bbp_anonymous_reply_count":0,"_bbp_topic_count_hidden":0,"_bbp_reply_count_hidden":0,"_bbp_forum_subforum_count":0,"footnotes":""},"class_list":["post-12842","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>EPON Manager - Thread Architecture - RDK Documentation Portal | Documentation<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/developer.rdkcentral.com\/documentation\/documentation\/rdk_broadband_documentation\/components\/epon-manager\/epon-manager-thread-architecture\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"EPON Manager - Thread Architecture - RDK Documentation Portal | Documentation\" \/>\n<meta property=\"og:description\" content=\"Thread Overview&nbsp; &nbsp;Thread Details 1. Main Thread (EPON Controller) Purpose:&nbsp;System initialization, coordination, and shutdown management [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/developer.rdkcentral.com\/documentation\/documentation\/rdk_broadband_documentation\/components\/epon-manager\/epon-manager-thread-architecture\/\" \/>\n<meta property=\"og:site_name\" content=\"RDK Documentation Portal | Documentation\" \/>\n<meta property=\"article:modified_time\" content=\"2026-03-13T10:43:43+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/developer.rdkcentral.com\/documentation\/documentation\/rdk_broadband_documentation\/components\/epon-manager\/epon-manager-thread-architecture\/\",\"url\":\"https:\/\/developer.rdkcentral.com\/documentation\/documentation\/rdk_broadband_documentation\/components\/epon-manager\/epon-manager-thread-architecture\/\",\"name\":\"EPON Manager - Thread Architecture - RDK Documentation Portal | Documentation\",\"isPartOf\":{\"@id\":\"https:\/\/developer.rdkcentral.com\/documentation\/#website\"},\"datePublished\":\"2026-03-13T10:36:03+00:00\",\"dateModified\":\"2026-03-13T10:43:43+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/developer.rdkcentral.com\/documentation\/documentation\/rdk_broadband_documentation\/components\/epon-manager\/epon-manager-thread-architecture\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/developer.rdkcentral.com\/documentation\/documentation\/rdk_broadband_documentation\/components\/epon-manager\/epon-manager-thread-architecture\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/developer.rdkcentral.com\/documentation\/documentation\/rdk_broadband_documentation\/components\/epon-manager\/epon-manager-thread-architecture\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/developer.rdkcentral.com\/documentation\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Documentation\",\"item\":\"https:\/\/developer.rdkcentral.com\/documentation\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"RDK Broadband\",\"item\":\"https:\/\/developer.rdkcentral.com\/documentation\/documentation\/rdk_broadband_documentation\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Components\",\"item\":\"https:\/\/developer.rdkcentral.com\/documentation\/documentation\/rdk_broadband_documentation\/components\/\"},{\"@type\":\"ListItem\",\"position\":5,\"name\":\"EPON Manager\",\"item\":\"https:\/\/developer.rdkcentral.com\/documentation\/documentation\/rdk_broadband_documentation\/components\/epon-manager\/\"},{\"@type\":\"ListItem\",\"position\":6,\"name\":\"EPON Manager &#8211; Thread Architecture\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/developer.rdkcentral.com\/documentation\/#website\",\"url\":\"https:\/\/developer.rdkcentral.com\/documentation\/\",\"name\":\"RDK Documentation Portal | Documentation\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/developer.rdkcentral.com\/documentation\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"EPON Manager - Thread Architecture - RDK Documentation Portal | Documentation","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/developer.rdkcentral.com\/documentation\/documentation\/rdk_broadband_documentation\/components\/epon-manager\/epon-manager-thread-architecture\/","og_locale":"en_US","og_type":"article","og_title":"EPON Manager - Thread Architecture - RDK Documentation Portal | Documentation","og_description":"Thread Overview&nbsp; &nbsp;Thread Details 1. Main Thread (EPON Controller) Purpose:&nbsp;System initialization, coordination, and shutdown management [&hellip;]","og_url":"https:\/\/developer.rdkcentral.com\/documentation\/documentation\/rdk_broadband_documentation\/components\/epon-manager\/epon-manager-thread-architecture\/","og_site_name":"RDK Documentation Portal | Documentation","article_modified_time":"2026-03-13T10:43:43+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/developer.rdkcentral.com\/documentation\/documentation\/rdk_broadband_documentation\/components\/epon-manager\/epon-manager-thread-architecture\/","url":"https:\/\/developer.rdkcentral.com\/documentation\/documentation\/rdk_broadband_documentation\/components\/epon-manager\/epon-manager-thread-architecture\/","name":"EPON Manager - Thread Architecture - RDK Documentation Portal | Documentation","isPartOf":{"@id":"https:\/\/developer.rdkcentral.com\/documentation\/#website"},"datePublished":"2026-03-13T10:36:03+00:00","dateModified":"2026-03-13T10:43:43+00:00","breadcrumb":{"@id":"https:\/\/developer.rdkcentral.com\/documentation\/documentation\/rdk_broadband_documentation\/components\/epon-manager\/epon-manager-thread-architecture\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/developer.rdkcentral.com\/documentation\/documentation\/rdk_broadband_documentation\/components\/epon-manager\/epon-manager-thread-architecture\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/developer.rdkcentral.com\/documentation\/documentation\/rdk_broadband_documentation\/components\/epon-manager\/epon-manager-thread-architecture\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/developer.rdkcentral.com\/documentation\/"},{"@type":"ListItem","position":2,"name":"Documentation","item":"https:\/\/developer.rdkcentral.com\/documentation\/"},{"@type":"ListItem","position":3,"name":"RDK Broadband","item":"https:\/\/developer.rdkcentral.com\/documentation\/documentation\/rdk_broadband_documentation\/"},{"@type":"ListItem","position":4,"name":"Components","item":"https:\/\/developer.rdkcentral.com\/documentation\/documentation\/rdk_broadband_documentation\/components\/"},{"@type":"ListItem","position":5,"name":"EPON Manager","item":"https:\/\/developer.rdkcentral.com\/documentation\/documentation\/rdk_broadband_documentation\/components\/epon-manager\/"},{"@type":"ListItem","position":6,"name":"EPON Manager &#8211; Thread Architecture"}]},{"@type":"WebSite","@id":"https:\/\/developer.rdkcentral.com\/documentation\/#website","url":"https:\/\/developer.rdkcentral.com\/documentation\/","name":"RDK Documentation Portal | Documentation","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/developer.rdkcentral.com\/documentation\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/developer.rdkcentral.com\/documentation\/wp-json\/wp\/v2\/pages\/12842","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/developer.rdkcentral.com\/documentation\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/developer.rdkcentral.com\/documentation\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/developer.rdkcentral.com\/documentation\/wp-json\/wp\/v2\/users\/659"}],"replies":[{"embeddable":true,"href":"https:\/\/developer.rdkcentral.com\/documentation\/wp-json\/wp\/v2\/comments?post=12842"}],"version-history":[{"count":2,"href":"https:\/\/developer.rdkcentral.com\/documentation\/wp-json\/wp\/v2\/pages\/12842\/revisions"}],"predecessor-version":[{"id":12845,"href":"https:\/\/developer.rdkcentral.com\/documentation\/wp-json\/wp\/v2\/pages\/12842\/revisions\/12845"}],"up":[{"embeddable":true,"href":"https:\/\/developer.rdkcentral.com\/documentation\/wp-json\/wp\/v2\/pages\/12819"}],"wp:attachment":[{"href":"https:\/\/developer.rdkcentral.com\/documentation\/wp-json\/wp\/v2\/media?parent=12842"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}