2017-11-01 24 views
0

私のOSは一つのコアダンプファイルを分析するためにgdbを使用する場合、以下の情報を得ている、Debianです:警告(「Unexpected size of section '.reg-xstate/67327' in core file.」)が要求され、なぜ誰もが説明してもらえなぜgdbは "コアファイル内のセクション` .reg-xstate/xxxxx 'の予期しないサイズのプロンプトを表示しますか? "

...... 
Program terminated with signal SIGSEGV, Segmentation fault. 

warning: Unexpected size of section `.reg-xstate/67327' in core file. 
..... 

P.S.、私gdbバージョンは次のとおりです。コアfile.`で

$ gdb 
GNU gdb (Debian 7.12-6+b1) 7.12.0.20161007-git 
Copyright (C) 2016 Free Software Foundation, Inc. 
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> 
This is free software: you are free to change and redistribute it. 
There is NO WARRANTY, to the extent permitted by law. Type "show copying" 
and "show warranty" for details. 
This GDB was configured as "x86_64-linux-gnu". 

答えて

0

Unexpected size of sectionを.reg-XSTATE/67327'

あなたのcoreファイルが切り捨てられている可能性があります。これは、ulimit -cが低すぎるか、またはcoreが書き込まれている間にディスク領域を使い果たした場合に発生します。

擬似セクション.reg-xstate/67327は、XSAVE命令によって保存されたスレッド67327のAVX拡張レジスタ状態を含むと想定されます。ここにはBFD(そしてメッセージの後のカーネル)にこのサポートを追加したpatchがあります。

+0

私のコアファイルサイズは「無制限」で、ディスク容量も十分です。それは変だね。 –

関連する問題