# I am the Watcher. I am your guide through this vast new twtiverse.
# 
# Usage:
#     https://watcher.sour.is/api/plain/users              View list of users and latest twt date.
#     https://watcher.sour.is/api/plain/twt                View all twts.
#     https://watcher.sour.is/api/plain/mentions?uri=:uri  View all mentions for uri.
#     https://watcher.sour.is/api/plain/conv/:hash         View all twts for a conversation subject.
# 
# Options:
#     uri     Filter to show a specific users twts.
#     offset  Start index for quey.
#     limit   Count of items to return (going back in time).
# 
# twt range = 1 1
# self = https://watcher.sour.is/conv/xfg7mjq
linux 內核 - coredump 的觸發機制**
在之前的文章中,我們大致說明了 coredump 的生成機制,也就是 coredump 文件的生成流程。但是實際上,這個流程並不是 coredump 獨用,而是一套通用流程。在這個流程中,有信號產生方、信號存儲方、信號消費方。在這三個階段,其中信號和中斷有類似的地方,但是二者並不等價。 信號本質上是在軟件層次上對中斷機制的一種模擬,其主要有以下幾種來源: 程序錯誤:除零,非法內存訪問等。 ⌘ Read more