• <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)  編輯 收藏 引用
            7777久久亚洲中文字幕| 久久夜色精品国产欧美乱| 曰曰摸天天摸人人看久久久| 久久久精品一区二区三区| 国产综合免费精品久久久| 亚洲精品视频久久久| 亚洲国产一成人久久精品| 青青青青久久精品国产| 久久精品中文无码资源站| 久久精品一区二区三区不卡| 久久国产V一级毛多内射| 亚洲国产精品18久久久久久| 91久久成人免费| 日本欧美久久久久免费播放网| 岛国搬运www久久| 99久久夜色精品国产网站| 久久国产成人| 青青草原综合久久| 男女久久久国产一区二区三区| 精品熟女少妇aⅴ免费久久| 久久国产色AV免费观看| 久久久这里有精品| 久久国产热这里只有精品| 狠狠色婷婷综合天天久久丁香 | 久久综合狠狠综合久久激情 | 国内精品伊人久久久久网站| 日韩av无码久久精品免费| 久久久久久久波多野结衣高潮| 66精品综合久久久久久久| 久久亚洲AV成人出白浆无码国产| 色婷婷久久久SWAG精品| 青青草国产精品久久| 韩国三级大全久久网站| 国产精品久久久久久吹潮| 97热久久免费频精品99| 国产高潮国产高潮久久久| 久久久久久国产精品免费无码| 狠狠综合久久AV一区二区三区| 久久天天婷婷五月俺也去| 亚洲人成电影网站久久| 99久久无色码中文字幕人妻|