Skip to content

Commit 5d01863

Browse files
committed
mark version 1.0.6
Signed-off-by: Penguin. <chenguanyou9338@gmail.com>
1 parent 38fa066 commit 5d01863

3 files changed

Lines changed: 7 additions & 5 deletions

File tree

.github/workflows/cmake-ubuntu-platform.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ jobs:
2323
bash ./script/build.sh
2424
sudo apt-get install -y libc6-dev-i386
2525
bash ./script/build_32.sh
26-
tar -czvf linux-parser_1.0.5.tar.gz output/arm64/linux-parser.so \
26+
tar -czvf linux-parser_1.0.6.tar.gz output/arm64/linux-parser.so \
2727
output/x86_64/linux-parser.so \
2828
output/arm/linux-parser.so \
2929
output/x86/linux-parser.so
3030
3131
- name: Upload a Build Artifact
3232
uses: actions/upload-artifact@v4
3333
with:
34-
name: linux-parser_1.0.5.tar.gz
35-
path: linux-parser_1.0.5.tar.gz
34+
name: linux-parser_1.0.6.tar.gz
35+
path: linux-parser_1.0.6.tar.gz

defs.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1090,7 +1090,7 @@ struct machdep_table {
10901090
void (*get_irq_affinity)(int);
10911091
void (*show_interrupts)(int, ulong *);
10921092
int (*is_page_ptr)(ulong, physaddr_t *);
1093-
int (*get_current_task_reg)(int, const char *, int, void *);
1093+
int (*get_current_task_reg)(int, const char *, int, void *, int);
10941094
int (*is_cpu_prstatus_valid)(int cpu);
10951095
};
10961096

@@ -2457,6 +2457,7 @@ struct size_table { /* stash of commonly-used sizes */
24572457
long fred_frame;
24582458
long vmap_node;
24592459
long cpumask_t;
2460+
long task_struct_exit_state;
24602461
};
24612462

24622463
struct array_table {
@@ -8340,5 +8341,6 @@ enum ppc64_regnum {
83408341

83418342
/* crash_target.c */
83428343
extern int gdb_change_thread_context (void);
8344+
extern int gdb_add_substack (int);
83438345

83448346
#endif /* !GDB_COMMON */

parser.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ char *help_parser[] = {
131131
"linux-parser",
132132
"Base on crash-utility project, apply analysis Linux kernel core.",
133133
"[COMMAND] ...",
134-
" linux-parser version 1.0.5, target crash-android version 8.0.6",
134+
" linux-parser version 1.0.6, target crash-android version 9.0.0",
135135
" Command: [core, ...]",
136136
"Exp:",
137137
"crash> lp [help] [COMMAND] [OPTION]",

0 commit comments

Comments
 (0)