Browse Source

FreeBSD: Cleanup tab indents.

tags/v1.9.20
Florian Walpen falkTX <falktx@falktx.com> 3 years ago
parent
commit
f94f285ca5
2 changed files with 14 additions and 14 deletions
  1. +1
    -1
      freebsd/JackAtomic_os.h
  2. +13
    -13
      freebsd/JackPlatformPlug_os.h

+ 1
- 1
freebsd/JackAtomic_os.h View File

@@ -27,7 +27,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.

static inline char CAS(volatile UInt32 value, UInt32 newvalue, volatile void* addr)
{
return atomic_cmpset_32((uint32_t*)addr, value, newvalue);
return atomic_cmpset_32((uint32_t*)addr, value, newvalue);
}

#endif


+ 13
- 13
freebsd/JackPlatformPlug_os.h View File

@@ -27,19 +27,19 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.

namespace Jack
{
struct JackRequest;
struct JackResult;
class JackPosixMutex;
class JackPosixThread;
class JackPosixSemaphore;
class JackSocketServerChannel;
class JackSocketClientChannel;
class JackSocketServerNotifyChannel;
class JackSocketNotifyChannel;
class JackClientSocket;
class JackNetUnixSocket;
struct JackRequest;
struct JackResult;
class JackPosixMutex;
class JackPosixThread;
class JackPosixSemaphore;
class JackSocketServerChannel;
class JackSocketClientChannel;
class JackSocketServerNotifyChannel;
class JackSocketNotifyChannel;
class JackClientSocket;
class JackNetUnixSocket;
}

/* __JackPlatformMutex__ */


Loading…
Cancel
Save