Add more missing license headers

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@258198 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Eric Fiselier
2016-01-19 21:58:49 +00:00
parent fa1e5db3bc
commit a9e91f30ee
11 changed files with 95 additions and 0 deletions

View File

@@ -1,3 +1,12 @@
//===----------------------------------------------------------------------===////
//
// The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===////
#ifndef ATOMIC_SUPPORT_H #ifndef ATOMIC_SUPPORT_H
#define ATOMIC_SUPPORT_H #define ATOMIC_SUPPORT_H

View File

@@ -1,4 +1,13 @@
#!/usr/bin/env python #!/usr/bin/env python
#===----------------------------------------------------------------------===##
#
# The LLVM Compiler Infrastructure
#
# This file is dual licensed under the MIT and the University of Illinois Open
# Source Licenses. See LICENSE.TXT for details.
#
#===----------------------------------------------------------------------===##
import os import os
import sys import sys

View File

@@ -1,3 +1,12 @@
#===----------------------------------------------------------------------===##
#
# The LLVM Compiler Infrastructure
#
# This file is dual licensed under the MIT and the University of Illinois Open
# Source Licenses. See LICENSE.TXT for details.
#
#===----------------------------------------------------------------------===##
"""not.py is a utility for inverting the return code of commands. """not.py is a utility for inverting the return code of commands.
It acts similar to llvm/utils/not. It acts similar to llvm/utils/not.
ex: python /path/to/not.py ' echo hello ex: python /path/to/not.py ' echo hello

View File

@@ -1,3 +1,12 @@
#===----------------------------------------------------------------------===##
#
# The LLVM Compiler Infrastructure
#
# This file is dual licensed under the MIT and the University of Illinois Open
# Source Licenses. See LICENSE.TXT for details.
#
#===----------------------------------------------------------------------===##
"""libcxx abi symbol checker""" """libcxx abi symbol checker"""
__author__ = 'Eric Fiselier' __author__ = 'Eric Fiselier'

View File

@@ -1,4 +1,12 @@
# -*- Python -*- vim: set syntax=python tabstop=4 expandtab cc=80: # -*- Python -*- vim: set syntax=python tabstop=4 expandtab cc=80:
#===----------------------------------------------------------------------===##
#
# The LLVM Compiler Infrastructure
#
# This file is dual licensed under the MIT and the University of Illinois Open
# Source Licenses. See LICENSE.TXT for details.
#
#===----------------------------------------------------------------------===##
""" """
diff - A set of functions for diff-ing two symbol lists. diff - A set of functions for diff-ing two symbol lists.
""" """

View File

@@ -1,4 +1,12 @@
# -*- Python -*- vim: set syntax=python tabstop=4 expandtab cc=80: # -*- Python -*- vim: set syntax=python tabstop=4 expandtab cc=80:
#===----------------------------------------------------------------------===##
#
# The LLVM Compiler Infrastructure
#
# This file is dual licensed under the MIT and the University of Illinois Open
# Source Licenses. See LICENSE.TXT for details.
#
#===----------------------------------------------------------------------===##
""" """
extract - A set of function that extract symbol lists from shared libraries. extract - A set of function that extract symbol lists from shared libraries.
""" """

View File

@@ -1,4 +1,12 @@
# -*- Python -*- vim: set syntax=python tabstop=4 expandtab cc=80: # -*- Python -*- vim: set syntax=python tabstop=4 expandtab cc=80:
#===----------------------------------------------------------------------===##
#
# The LLVM Compiler Infrastructure
#
# This file is dual licensed under the MIT and the University of Illinois Open
# Source Licenses. See LICENSE.TXT for details.
#
#===----------------------------------------------------------------------===##
""" """
match - A set of functions for matching symbols in a list to a list of regexs match - A set of functions for matching symbols in a list to a list of regexs
""" """

View File

@@ -1,3 +1,12 @@
#===----------------------------------------------------------------------===##
#
# The LLVM Compiler Infrastructure
#
# This file is dual licensed under the MIT and the University of Illinois Open
# Source Licenses. See LICENSE.TXT for details.
#
#===----------------------------------------------------------------------===##
import ast import ast
import distutils.spawn import distutils.spawn
import signal import signal

View File

@@ -1,7 +1,16 @@
#!/usr/bin/env python #!/usr/bin/env python
#===----------------------------------------------------------------------===##
#
# The LLVM Compiler Infrastructure
#
# This file is dual licensed under the MIT and the University of Illinois Open
# Source Licenses. See LICENSE.TXT for details.
#
#===----------------------------------------------------------------------===##
""" """
sym_diff - Compare two symbol lists and output the differences. sym_diff - Compare two symbol lists and output the differences.
""" """
from argparse import ArgumentParser from argparse import ArgumentParser
import sys import sys
from sym_check import diff, util from sym_check import diff, util

View File

@@ -1,4 +1,12 @@
#!/usr/bin/env python #!/usr/bin/env python
#===----------------------------------------------------------------------===##
#
# The LLVM Compiler Infrastructure
#
# This file is dual licensed under the MIT and the University of Illinois Open
# Source Licenses. See LICENSE.TXT for details.
#
#===----------------------------------------------------------------------===##
""" """
sym_extract - Extract and output a list of symbols from a shared library. sym_extract - Extract and output a list of symbols from a shared library.
""" """

View File

@@ -1,4 +1,13 @@
#!/usr/bin/env python #!/usr/bin/env python
#===----------------------------------------------------------------------===##
#
# The LLVM Compiler Infrastructure
#
# This file is dual licensed under the MIT and the University of Illinois Open
# Source Licenses. See LICENSE.TXT for details.
#
#===----------------------------------------------------------------------===##
""" """
sym_match - Match all symbols in a list against a list of regexes. sym_match - Match all symbols in a list against a list of regexes.
""" """