summaryrefslogtreecommitdiffstats
path: root/cddl
Commit message (Collapse)AuthorAgeFilesLines
* Add a missing file change from the VOP_GETATTR() argument axing.attilio2008-08-281-1/+1
|
* Don't need to include vmem.h anymore.jb2008-05-231-1/+0
|
* Add the dtrace client app to the build.jb2008-05-222-1/+39
|
* Add the DTrace build tools.jb2008-05-225-1/+155
|
* Oops, these files belonged under src/sys, not src. Sorry.jb2008-05-2218-25785/+0
|
* This commit was generated by cvs2svn to compensate for changes in r179191,jb2008-05-2218-0/+25785
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Vendor import (really!) of the OpenSolaris bits for DTrace.jb2008-05-2218-0/+25785
| |
* | Add the DTrace libraries and D library scripts.jb2008-05-2211-1/+863
| |
* | Add Solaris compatibility definitions for things we don't really want injb2008-05-212-0/+83
| | | | | | | | FreeBSD headers.
* | * Handle the different ioctl design.jb2008-04-263-14/+524
| | | | | | | | * Add a couple of FreeBSD action extensions.
* | Make this file compile cleanly.jb2008-04-261-1/+3
| |
* | Leave out some header files.jb2008-04-262-0/+10
| |
* | * Handle building on FreeBSD for i386 and amd64.jb2008-04-261-27/+194
| | | | | | | | | | * Add stubs for the other FreeBSD arches. * Make the file compile cleanly.
* | * Make this file compile cleanly.jb2008-04-261-10/+27
| | | | | | | | * Add FreeBSD constructor/destructor definitions.
* | * Add FreeBSD action extensions.jb2008-04-261-6/+267
| | | | | | | | | | | | | | * Get the kernel module file name rather than hard-coding it like on Solaris. * Use FreeBSD's process library API. * Handle FreeBSD's different lock types. * Get the list of loaded providers via a syscall.
* | * Handle the different ioctl design.jb2008-04-261-3/+14
| | | | | | | | * Make this file compile cleanly.
* | There is a lot of commented out code here which applies to future workjb2008-04-261-2/+112
| | | | | | | | | | | | | | for userland tracing. For now we need the basic functions to be in place so that DTrace can be used for kernel tracing.
* | Leave out a header file.jb2008-04-261-0/+2
| |
* | Merge FreeBSD include file changes with some code that should have comejb2008-04-261-11/+39
| | | | | | | | in on the vendor branch.
* | * Use FreeBSD's process library instead of the Solaris one.jb2008-04-261-1/+122
| | | | | | | | | | | | | | * There are a few placeholders in here for which there isn't libproc support code yet. This is relevent to userland tracing. This set of commits is designed to get kernel tracing up and running, with the userland stuff to follow later.
* | Leave out the hook that Solaris has into it's rtld.jb2008-04-261-0/+2
| |
* | * Add a couple of action definitions for FreeBSD extensions.jb2008-04-261-0/+32
| | | | | | | | | | | | * Handle the different ioctl design. * Add support for the get and set error location. * Add support for freopen().
* | * Handle the different ioctl design.jb2008-04-261-1/+17
| | | | | | | | * Make the file compile cleanly.
* | There are many places in libdtrace where errno can be set. When anjb2008-04-261-0/+18
| | | | | | | | | | | | | | | | error is returned all the way back to the dtrace app, it's hard to figure out where that error came from. Add a couple of functions to get and set the error location which can be optionally compiled into the library.
* | Add some error definitions for FreeBSD action extensions.jb2008-04-261-1/+5
| |
* | * Make this file compile cleanly.jb2008-04-261-7/+98
| | | | | | | | | | * Use FreeBSD's kld syscalls to get kernel module information instead of using an object file system like Solaris uses.
* | * Handle the different ioctl design.jb2008-04-261-4/+21
| | | | | | | | | | * Use FreeBSD's process library API. * Make the file compile cleanly.
* | Just leave out a few includes to compile this on FreeBSD.jb2008-04-261-0/+4
| |
* | * Get the maximum number of CPUs via a sysctl.jb2008-04-261-2/+63
| | | | | | | | | | | | | | | | | | | | * Handle the different ioctl design. * Support the freopen() changes. * Use functions in FreeBSD's process library rather than the CDDL library that Solaris has which sits on top of their process file system and is therefore unsuitable for use on FreeBSD. The libproc API for FreeBSD is deliberately different to that on Solaris because Sun wouldn't release the libproc.h header under a BSD license.
* | * Define YY_INPUT for flex since input() can't be re-defined.jb2008-04-261-1/+25
| | | | | | | | | | | | | | | | * On FreeBSD define both LITTLE_ENDIAN and BIG_ENDIAN and then set the BYTE_ORDER to the one we are using. On Solaris they define one or the other but not both. For us to keep using FreeBSD header files, we need to use endian definitions the same way we do in pure BSD code.
* | Make this compile cleanly.jb2008-04-261-3/+2
| |
* | Handle the different level of indirection between ioctl on SYSV vs BSD.jb2008-04-261-2/+7
| |
* | freopen() on FreeBSD behaves differently to the Solaris one.jb2008-04-261-1/+92
| |
* | * Use a portable POSIX timed wait.jb2008-04-261-1/+22
| | | | | | | | * Handle the different ioctl format.
* | * Fix a function prototype.jb2008-04-261-1/+10
| | | | | | | | | | * Allow for the different level of indirection between SYSV's ioctl and BSD's. * Map a couple of sysconf definitions to one that FreeBSD has.
* | Simplify for FreeBSD for now, bypassing the multibyte char variablesjb2008-04-261-0/+13
| | | | | | | | that Solaris has. We may need to revisit this issue later.
* | Solaris has code which makes zlib optional, so they have to jump throughjb2008-04-261-7/+28
| | | | | | | | | | some hoops to get the compression functions. On FreeBSD have libz and can just link against it.
* | 'echo' behaviour differs between SYSV and BSD.jb2008-04-262-4/+8
| |
* | A lot of changes to make this code compile cleanly on FreeBSD.jb2008-04-2623-224/+342
| |
* | Use FreeBSD's libdwarf which is BSD licensed instead of the GPL'd one thatjb2008-04-261-137/+105
| | | | | | | | is used in Solaris.
* | We need to be consistent with prototype definitions. It isn't OK tojb2008-04-261-8/+55
| | | | | | | | | | | | | | use 'const' and just override it whenever we feel like it. If we use it at all, then we need to do it properly. Add a couple of functions that were useful in getting this code ported.
* | Make this file compile cleanly.jb2008-04-261-25/+25
| |
* | Apply FreeBSD changes.jb2008-04-264-6/+26
| |
* | On FreeBSD we can't afford to have a build fail simply because therejb2008-04-261-0/+14
| | | | | | | | was some sort of CTF conversion error.
* | Add a missing include file. We care about function prototype definitions.jb2008-04-261-0/+1
| |
* | Apply FreeBSD changes.jb2008-04-261-6/+66
| | | | | | | | | | There is an incomplete piece of code in here which requires the process handling library which is still under development.
* | * Set the path to perl on FreeBSD.jb2008-04-261-4/+4
| | | | | | | | | | | | | | * Use the FreeBSD shell. * On FreeBSD the tests run from the OBJDIR, so output files go there rather than in the source tree like they do on Solaris. * FreeBSD doesn't need a special path to the compiler.
* | Set the path to perl on FreeBSD.jb2008-04-261-1/+1
| |
* | Port these test files to work under FreeBSD.jb2008-04-2630-183/+296
| |
* | This commit was generated by cvs2svn to compensate for changes in r178528,jb2008-04-2698-2717/+705
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
OpenPOWER on IntegriCloud