Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
f8a7e1a4
Commit
f8a7e1a4
authored
Jan 14, 2013
by
Richard Sandiford
Committed by
Richard Sandiford
Jan 14, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update copyright years in libbacktrace.
From-SVN: r195165
parent
69b2c423
Hide whitespace changes
Inline
Side-by-side
Showing
21 changed files
with
24 additions
and
20 deletions
+24
-20
libbacktrace/ChangeLog
+4
-0
libbacktrace/Makefile.am
+1
-1
libbacktrace/alloc.c
+1
-1
libbacktrace/backtrace-supported.h.in
+1
-1
libbacktrace/backtrace.c
+1
-1
libbacktrace/backtrace.h
+1
-1
libbacktrace/btest.c
+1
-1
libbacktrace/configure.ac
+1
-1
libbacktrace/dwarf.c
+1
-1
libbacktrace/elf.c
+1
-1
libbacktrace/fileline.c
+1
-1
libbacktrace/internal.h
+1
-1
libbacktrace/mmap.c
+1
-1
libbacktrace/mmapio.c
+1
-1
libbacktrace/nounwind.c
+1
-1
libbacktrace/posix.c
+1
-1
libbacktrace/print.c
+1
-1
libbacktrace/read.c
+1
-1
libbacktrace/simple.c
+1
-1
libbacktrace/state.c
+1
-1
libbacktrace/unknown.c
+1
-1
No files found.
libbacktrace/ChangeLog
View file @
f8a7e1a4
2013-01-14 Richard Sandiford <rdsandiford@googlemail.com>
Update copyright years.
2013-01-01 Ian Lance Taylor <iant@google.com>
PR bootstrap/54834
...
...
libbacktrace/Makefile.am
View file @
f8a7e1a4
# Makefile.am -- Backtrace Makefile.
# Copyright (C) 2012 Free Software Foundation, Inc.
# Copyright (C) 2012
-2013
Free Software Foundation, Inc.
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
...
...
libbacktrace/alloc.c
View file @
f8a7e1a4
/* alloc.c -- Memory allocation without mmap.
Copyright (C) 2012 Free Software Foundation, Inc.
Copyright (C) 2012
-2013
Free Software Foundation, Inc.
Written by Ian Lance Taylor, Google.
Redistribution and use in source and binary forms, with or without
...
...
libbacktrace/backtrace-supported.h.in
View file @
f8a7e1a4
/* backtrace-supported.h.in -- Whether stack backtrace is supported.
Copyright (C) 2012 Free Software Foundation, Inc.
Copyright (C) 2012
-2013
Free Software Foundation, Inc.
Written by Ian Lance Taylor, Google.
Redistribution and use in source and binary forms, with or without
...
...
libbacktrace/backtrace.c
View file @
f8a7e1a4
/* backtrace.c -- Entry point for stack backtrace library.
Copyright (C) 2012 Free Software Foundation, Inc.
Copyright (C) 2012
-2013
Free Software Foundation, Inc.
Written by Ian Lance Taylor, Google.
Redistribution and use in source and binary forms, with or without
...
...
libbacktrace/backtrace.h
View file @
f8a7e1a4
/* backtrace.h -- Public header file for stack backtrace library.
Copyright (C) 2012 Free Software Foundation, Inc.
Copyright (C) 2012
-2013
Free Software Foundation, Inc.
Written by Ian Lance Taylor, Google.
Redistribution and use in source and binary forms, with or without
...
...
libbacktrace/btest.c
View file @
f8a7e1a4
/* btest.c -- Test for libbacktrace library
Copyright (C) 2012 Free Software Foundation, Inc.
Copyright (C) 2012
-2013
Free Software Foundation, Inc.
Written by Ian Lance Taylor, Google.
Redistribution and use in source and binary forms, with or without
...
...
libbacktrace/configure.ac
View file @
f8a7e1a4
# configure.ac -- Backtrace configure script.
# Copyright (C) 2012 Free Software Foundation, Inc.
# Copyright (C) 2012
-2013
Free Software Foundation, Inc.
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
...
...
libbacktrace/dwarf.c
View file @
f8a7e1a4
/* dwarf.c -- Get file/line information from DWARF for backtraces.
Copyright (C) 2012 Free Software Foundation, Inc.
Copyright (C) 2012
-2013
Free Software Foundation, Inc.
Written by Ian Lance Taylor, Google.
Redistribution and use in source and binary forms, with or without
...
...
libbacktrace/elf.c
View file @
f8a7e1a4
/* elf.c -- Get debug data from an ELF file for backtraces.
Copyright (C) 2012 Free Software Foundation, Inc.
Copyright (C) 2012
-2013
Free Software Foundation, Inc.
Written by Ian Lance Taylor, Google.
Redistribution and use in source and binary forms, with or without
...
...
libbacktrace/fileline.c
View file @
f8a7e1a4
/* fileline.c -- Get file and line number information in a backtrace.
Copyright (C) 2012 Free Software Foundation, Inc.
Copyright (C) 2012
-2013
Free Software Foundation, Inc.
Written by Ian Lance Taylor, Google.
Redistribution and use in source and binary forms, with or without
...
...
libbacktrace/internal.h
View file @
f8a7e1a4
/* internal.h -- Internal header file for stack backtrace library.
Copyright (C) 2012 Free Software Foundation, Inc.
Copyright (C) 2012
-2013
Free Software Foundation, Inc.
Written by Ian Lance Taylor, Google.
Redistribution and use in source and binary forms, with or without
...
...
libbacktrace/mmap.c
View file @
f8a7e1a4
/* mmap.c -- Memory allocation with mmap.
Copyright (C) 2012 Free Software Foundation, Inc.
Copyright (C) 2012
-2013
Free Software Foundation, Inc.
Written by Ian Lance Taylor, Google.
Redistribution and use in source and binary forms, with or without
...
...
libbacktrace/mmapio.c
View file @
f8a7e1a4
/* mmapio.c -- File views using mmap.
Copyright (C) 2012 Free Software Foundation, Inc.
Copyright (C) 2012
-2013
Free Software Foundation, Inc.
Written by Ian Lance Taylor, Google.
Redistribution and use in source and binary forms, with or without
...
...
libbacktrace/nounwind.c
View file @
f8a7e1a4
/* backtrace.c -- Entry point for stack backtrace library.
Copyright (C) 2012 Free Software Foundation, Inc.
Copyright (C) 2012
-2013
Free Software Foundation, Inc.
Written by Ian Lance Taylor, Google.
Redistribution and use in source and binary forms, with or without
...
...
libbacktrace/posix.c
View file @
f8a7e1a4
/* posix.c -- POSIX file I/O routines for the backtrace library.
Copyright (C) 2012 Free Software Foundation, Inc.
Copyright (C) 2012
-2013
Free Software Foundation, Inc.
Written by Ian Lance Taylor, Google.
Redistribution and use in source and binary forms, with or without
...
...
libbacktrace/print.c
View file @
f8a7e1a4
/* print.c -- Print the current backtrace.
Copyright (C) 2012 Free Software Foundation, Inc.
Copyright (C) 2012
-2013
Free Software Foundation, Inc.
Written by Ian Lance Taylor, Google.
Redistribution and use in source and binary forms, with or without
...
...
libbacktrace/read.c
View file @
f8a7e1a4
/* read.c -- File views without mmap.
Copyright (C) 2012 Free Software Foundation, Inc.
Copyright (C) 2012
-2013
Free Software Foundation, Inc.
Written by Ian Lance Taylor, Google.
Redistribution and use in source and binary forms, with or without
...
...
libbacktrace/simple.c
View file @
f8a7e1a4
/* simple.c -- The backtrace_simple function.
Copyright (C) 2012 Free Software Foundation, Inc.
Copyright (C) 2012
-2013
Free Software Foundation, Inc.
Written by Ian Lance Taylor, Google.
Redistribution and use in source and binary forms, with or without
...
...
libbacktrace/state.c
View file @
f8a7e1a4
/* state.c -- Create the backtrace state.
Copyright (C) 2012 Free Software Foundation, Inc.
Copyright (C) 2012
-2013
Free Software Foundation, Inc.
Written by Ian Lance Taylor, Google.
Redistribution and use in source and binary forms, with or without
...
...
libbacktrace/unknown.c
View file @
f8a7e1a4
/* unknown.c -- used when backtrace configury does not know file format.
Copyright (C) 2012 Free Software Foundation, Inc.
Copyright (C) 2012
-2013
Free Software Foundation, Inc.
Written by Ian Lance Taylor, Google.
Redistribution and use in source and binary forms, with or without
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment