Xcodeのスタックトレースによると、私のプログラムは壊れて、ここでEXC_BAD_ACCESSを与えます。
int main (int argc, const char * argv[]) {
float usd,btc,bid,ask,order_price,possible_price;
DateData * prices = load_prices(); <---
DateData * load_prices(){
FILE * file = fopen("price.dat", "rb"); <---
これはそのコード行とは関係がなく、後のコードと関係があると判断しました。後でまで呼び出されない関数には、プログラムを破損しているように見えるコード行があります。行が実行される前に関数から戻る場合、プログラムにはこの問題はありませんが、行の後に関数から戻ることになっている場合は、この問題があります。
コード行はOpenCLの呼び出しです。それはどういうわけかプログラムを破壊していますか?
err = clEnqueueReadBuffer(ocl_data->commands, ocl_data->output, CL_TRUE, 0, sizeof(CombinationResult) * PPO_COMBINATIONS, (*PPO_results)[x] + PPO_COMBINATIONS*(p + 5), 0, NULL, NULL);
PPO_COMBINATIONSは整数マクロとして定義され、PPO_resultsのタイプはCombinationResult(*)[3] [PPO_COMBINATIONS*11]です。ocl_data->commandsのタイプはcl_command_queueで、ocl_data->outputのタイプはcl_memです。err、p、およびxの型はintです。
「AppleLLVMCompiler3.0」でXcodeを使用しています。「LLVMGCC4.2」コンパイラは、何らかの理由で「アーキテクチャi386の不正なメタデータレコード」を提供します。
これは、コマンドラインを使用してgdbでコンパイルおよび実行した場合の結果です。
Matthew-Mitchell:Parrallel BitCoin Trading Algorithm matt$ gcc -g cmain.c -o test -lcurl -framework OpenCL -std=c99 -arch i386
Matthew-Mitchell:Parrallel BitCoin Trading Algorithm matt$ gdb testGNU gdb 6.3.50-20050815 (Apple version gdb-1708) (Mon Aug 15 16:03:10 UTC 2011)
Copyright 2004 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain conditions.
Type "show copying" to see the conditions.
There is absolutely no warranty for GDB. Type "show warranty" for details.
This GDB was configured as "x86_64-apple-darwin"...Reading symbols for shared libraries .... done
(gdb) run
Starting program: /Users/matt/Programming/Bit Coin algorithm/Parrallel BitCoin Trading Algorithm/test
Reading symbols for shared libraries .+++.................................................................. done
Program received signal EXC_BAD_ACCESS, Could not access memory.
Reason: KERN_PROTECTION_FAILURE at address: 0xbea7d7cc
0x00003e9a in main (argc=0, argv=0x1000) at cmain.c:572
572 int main (int argc, const char * argv[]) {
コマンドラインで直接実行すると、プログラムはすぐに終了します。