• <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            隨筆 - 42  文章 - 3  trackbacks - 0
            <2012年7月>
            24252627282930
            1234567
            891011121314
            15161718192021
            22232425262728
            2930311234

            常用鏈接

            留言簿(2)

            隨筆檔案

            文章檔案

            網頁收藏

            搜索

            •  

            最新評論

            閱讀排行榜

            評論排行榜

             
            在編寫共享庫時,為保證ABI(app binary interface)兼容:
              1 盡量使用C語言 2不要在接口類使用虛函數和模板; 3 不要改變成員函數的訪問權限; 4 不要使用STL 5 不要依賴使用虛擬析構函數,最好自己實現,顯式調用;
            6 不要在DLL里面申請內存,DLL外釋放,DLL和APP可能不在同一個內存堆;

            可重入(reentrant)函數可以由多于一個任務并發使用,而不必擔心數據錯誤。相反, 不可重入(non-reentrant)函數不能由超過一個任務所共享,除非能確保函數的互斥(或者使用信號量,或者在代碼的關鍵部分禁用中斷)。可重入函數可以在任意時刻被中斷,稍后再繼續運行,不會丟失數據。可重入函數要么使用本地變量,要么在使用全局變量時保護自己的數據。
            Reentrant Function:A function whose effect, when called by two or more threads,is guaranteed to be as if the threads each executed thefunction one after another in an undefined order, even ifthe actual execution is interleaved.
            Thread-Safe Function:A function that may be safely invoked concurrently by multiple threads.

            函數可重入的必要條件:
            1 不使用任何(局部)靜態變量或者全局的非常量;
            2 不返回任何局部靜態或者全局非常量指針;
            3 僅依賴調用方的參數;
            4 不依賴任何單個資源的鎖;
            5 不調用任何不可重入的函數;

            In classical OS, stack grows downwards. After each push operatation, the value of ebp becomes small, and vice versa.

            esp is the top of the stack.

            ebp is usually set to esp at the start of the function. Local variables are accessed by subtracting a constant offset from ebp. All x86 calling conventions define ebp as being preserved across function calls. ebp itself actually points to the previous frame's base pointer, which enables stack walking in a debugger and viewing other frames local variables to work.

            Most function prologs look something like:
            push ebp      ; Preserve current frame pointer
            mov ebp, esp  ; Create new frame pointer pointing to current stack top
            sub esp, 20   ; allocate 20 bytes worth of locals on stack. 

            Then later in the function you may have code like (presuming both local variables are 4 bytes)
            mov [ebp-4], eax    ; Store eax in first local
            mov ebx, [ebp - 8]  ; Load ebx from second local

            objdump is a program for displaying various information about object files. For instance, it can be used as a disassembler to view executable in assembly form. It is part of the GNU Binutils for fine-grained control over executable and other binary data.

            For example, to completely disassemble a binary:
            objdump -Dslx file


            posted on 2012-07-17 22:20 鷹擊長空 閱讀(315) 評論(0)  編輯 收藏 引用
            91精品国产9l久久久久| 国产成人精品久久免费动漫| www性久久久com| 亚洲国产精品久久久久网站| 日韩精品久久久久久| 久久久国产亚洲精品| 国产精品99久久久精品无码| 久久精品嫩草影院| AV无码久久久久不卡蜜桃| av国内精品久久久久影院| 国产成人综合久久久久久| 狠狠色婷婷久久综合频道日韩| 久久精品一本到99热免费| 久久无码高潮喷水| 日本欧美国产精品第一页久久| 久久er99热精品一区二区| 99久久精品无码一区二区毛片| 伊人色综合久久天天网| 天堂无码久久综合东京热| 色综合久久中文字幕无码| 久久久久久精品成人免费图片| 日韩AV毛片精品久久久| 国内精品久久久久影院免费| 偷窥少妇久久久久久久久| Xx性欧美肥妇精品久久久久久| 色综合久久无码五十路人妻| 国产精品成人久久久| 99久久精品国产一区二区三区 | 国产巨作麻豆欧美亚洲综合久久| 色偷偷91久久综合噜噜噜噜| 99久久99久久精品国产| 亚洲国产精品无码久久一区二区| 久久性生大片免费观看性| 伊人色综合九久久天天蜜桃| 国内精品久久久久久不卡影院| 久久精品国产一区二区| 久久综合久久综合九色| 久久国产色AV免费看| 久久综合香蕉国产蜜臀AV| 国产亚洲欧美成人久久片| 国产69精品久久久久777|