1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-08-01 03:18:17 +00:00

Get rid of gpu_temp_* variables in data. context

This commit is contained in:
jsteube 2016-09-22 12:55:48 +02:00
parent 93d3b3a809
commit a628cd399a
2 changed files with 0 additions and 11 deletions

View File

@ -1017,10 +1017,6 @@ typedef struct
debugfile_ctx_t *debugfile_ctx; debugfile_ctx_t *debugfile_ctx;
session_ctx_t *session_ctx; session_ctx_t *session_ctx;
u32 gpu_temp_disable;
u32 gpu_temp_abort;
u32 gpu_temp_retain;
/** /**
* used for restore * used for restore
*/ */

View File

@ -281,9 +281,6 @@ int main (int argc, char **argv)
data.attack_mode = user_options->attack_mode; data.attack_mode = user_options->attack_mode;
data.benchmark = user_options->benchmark; data.benchmark = user_options->benchmark;
data.force = user_options->force; data.force = user_options->force;
data.gpu_temp_abort = user_options->gpu_temp_abort;
data.gpu_temp_disable = user_options->gpu_temp_disable;
data.gpu_temp_retain = user_options->gpu_temp_retain;
data.hex_charset = user_options->hex_charset; data.hex_charset = user_options->hex_charset;
data.hex_salt = user_options->hex_salt; data.hex_salt = user_options->hex_salt;
data.hex_wordlist = user_options->hex_wordlist; data.hex_wordlist = user_options->hex_wordlist;
@ -1403,10 +1400,6 @@ int main (int argc, char **argv)
user_options->gpu_temp_retain = 0; user_options->gpu_temp_retain = 0;
} }
data.gpu_temp_disable = user_options->gpu_temp_disable;
data.gpu_temp_abort = user_options->gpu_temp_abort;
data.gpu_temp_retain = user_options->gpu_temp_retain;
/** /**
* enable custom signal handler(s) * enable custom signal handler(s)
*/ */